Advertisement
Guest User

Untitled

a guest
May 22nd, 2018
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.23 KB | None | 0 0
  1. apply plugin: 'com.android.application'
  2.  
  3. android {
  4. compileSdkVersion 27
  5. defaultConfig {
  6. applicationId "com.test.shamzic.applitp1"
  7. minSdkVersion 19
  8. targetSdkVersion 27
  9. versionCode 1
  10. versionName "1.0"
  11. testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
  12. }
  13. buildTypes {
  14. release {
  15. minifyEnabled false
  16. proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
  17. //signingConfig signingConfigs.release
  18. }
  19. }
  20. }
  21.  
  22. allprojects {
  23. repositories {
  24. mavenCentral()
  25. }
  26. }
  27.  
  28. dependencies {
  29. implementation fileTree(dir: 'libs', include: ['*.jar'])
  30. implementation 'com.android.support:appcompat-v7:27.1.1'
  31. implementation 'com.android.support:customtabs:27.1.1'
  32. implementation "com.android.support:cardview-v7:27.1.1"
  33. implementation 'com.android.support:design:27.1.1'
  34. implementation 'com.android.support.constraint:constraint-layout:1.1.0'
  35. //noinspection GradleCompatible
  36. implementation 'com.google.android.gms:play-services-maps:15.0.1'
  37. ////////////////////Ajout chelou a prendre avec méfiance/////////////////////
  38. implementation 'com.google.android.gms:play-services-places:15.0.1'
  39. ////////////////////////////////////////////////////////////////////
  40. testImplementation 'junit:junit:4.12'
  41. androidTestImplementation 'com.android.support.test:runner:1.0.2'
  42. androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
  43.  
  44. // Required only if Facebook login support is required
  45. implementation('com.facebook.android:facebook-android-sdk:4.27.0')
  46. // Required only if Twitter login support is required
  47. implementation("com.twitter.sdk.android:twitter-core:3.0.0@aar") { transitive = true }
  48. implementation 'pl.droidsonroids.gif:android-gif-drawable:1.2.12'
  49.  
  50. // FIREBASE
  51. implementation 'com.google.firebase:firebase-core:15.0.0'
  52. implementation 'com.firebaseui:firebase-ui-auth:3.3.1'
  53. implementation 'com.google.firebase:firebase-auth:15.0.0'
  54. implementation 'com.google.firebase:firebase-firestore:15.0.0'
  55.  
  56. }
  57.  
  58.  
  59. apply plugin: 'com.google.gms.google-services'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement