Guest User

Untitled

a guest
May 21st, 2018
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.54 KB | None | 0 0
  1. apply plugin: 'com.android.application'
  2. apply plugin: 'com.google.gms.google-services'
  3.  
  4. android {
  5. compileSdkVersion 27
  6. defaultConfig {
  7. applicationId "com.gtlab.asap"
  8. minSdkVersion 15
  9. targetSdkVersion 27
  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.txt'), 'proguard-rules.pro'
  18. }
  19. }
  20. }
  21.  
  22. dependencies {
  23. implementation fileTree(dir: 'libs', include: ['*.jar'])
  24. implementation 'com.android.support:appcompat-v7:27.1.1'
  25. implementation 'com.android.support.constraint:constraint-layout:1.1.0'
  26. implementation 'com.google.firebase:firebase-core:15.0.2'
  27. implementation 'com.google.firebase:firebase-database:15.0.0'
  28. implementation 'com.google.firebase:firebase-messaging:15.0.2'
  29. implementation 'com.google.firebase:firebase-auth:15.1.0'
  30. testImplementation 'junit:junit:4.12'
  31. androidTestImplementation 'com.android.support.test:runner:1.0.2'
  32. androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
  33. }
  34.  
  35. buildscript {
  36.  
  37. repositories {
  38. google()
  39. jcenter()
  40. }
  41. dependencies {
  42. classpath 'com.android.tools.build:gradle:3.1.2'
  43. classpath 'com.google.gms:google-services:3.3.1'
  44.  
  45. // NOTE: Do not place your application dependencies here; they belong
  46. // in the individual module build.gradle files
  47. }
  48. }
Add Comment
Please, Sign In to add comment