Advertisement
mouhsineelachbi

Graddle

Apr 2nd, 2019
149
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 1.51 KB | None | 0 0
  1. apply plugin: 'com.android.application'
  2. apply plugin: 'com.google.gms.google-services'
  3.  
  4. android {
  5.     compileSdkVersion 28
  6.     defaultConfig {
  7.         applicationId "com.example.iosm"
  8.         minSdkVersion 15
  9.         targetSdkVersion 28
  10.         versionCode 1
  11.         versionName "1.0"
  12.         testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
  13.     }
  14.     buildTypes {
  15.         release {
  16.             minifyEnabled false
  17.             proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
  18.         }
  19.     }
  20. }
  21.  
  22. dependencies {
  23.     implementation fileTree(dir: 'libs', include: ['*.jar'])
  24.     //noinspection GradleCompatible
  25.     implementation 'com.android.support:appcompat-v7:28.0.0'
  26.     implementation 'com.android.support.constraint:constraint-layout:1.1.3'
  27.     testImplementation 'junit:junit:4.12'
  28.     implementation 'com.google.gms:google-services:4.2.0'
  29.     implementation 'com.github.bumptech.glide:glide:4.7.1'
  30.     implementation 'com.android.support:multidex:1.0.3'
  31.     implementation 'com.google.firebase:firebase-auth:16.2.0'
  32.     implementation 'com.google.firebase:firebase-firestore:18.2.0'
  33.     implementation 'com.android.support:recyclerview-v7:28.0.0'
  34.     implementation 'com.google.firebase:firebase-core:16.0.8'
  35.     implementation 'com.google.firebase:firebase-storage:16.1.0'
  36.     androidTestImplementation 'com.android.support.test:runner:1.0.2'
  37.     androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
  38. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement