Advertisement
mouhsineelachbi

gradle

Mar 13th, 2019
184
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.86 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.iosmapp"
  8. minSdkVersion 19
  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. repositories {
  23. mavenCentral()
  24. maven { url 'https://maven.google.com' }
  25. }
  26.  
  27. dependencies {
  28. implementation fileTree(dir: 'libs', include: ['*.jar'])
  29. //noinspection GradleCompatible
  30. implementation 'com.android.support:appcompat-v7:28.0.0'
  31. implementation 'com.android.support.constraint:constraint-layout:1.1.3'
  32. implementation 'com.google.firebase:firebase-database:16.1.0'
  33. implementation 'com.google.firebase:firebase-core:16.0.7'
  34. implementation 'com.google.firebase:firebase-storage:16.1.0'
  35. implementation 'com.google.firebase:firebase-auth:16.1.0'
  36. implementation 'com.google.android.gms:play-services-auth:16.0.1'
  37. implementation 'com.github.bumptech.glide:glide:4.9.0'
  38. annotationProcessor 'com.github.bumptech.glide:compiler:4.9.0'
  39. implementation 'com.firebaseui:firebase-ui-storage:4.3.1'
  40. implementation ("com.github.bumptech.glide:glide:4.9.0") {
  41. exclude group: "com.android.support"
  42. }
  43. implementation "com.android.support:support-fragment:28.0.0"
  44. testImplementation 'junit:junit:4.12'
  45. androidTestImplementation 'com.android.support.test:runner:1.0.2'
  46. androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
  47. implementation 'com.android.support:recyclerview-v7:28.0.0'
  48. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement