Advertisement
Guest User

Untitled

a guest
Dec 7th, 2019
159
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.32 KB | None | 0 0
  1. apply plugin: 'com.android.application'
  2. apply plugin: 'com.google.gms.google-services'
  3.  
  4. android {
  5. compileSdkVersion 29
  6. buildToolsVersion "29.0.2"
  7. defaultConfig {
  8. applicationId "com.example.cs_final"
  9. minSdkVersion 15
  10. targetSdkVersion 29
  11. versionCode 1
  12. versionName "1.0"
  13. testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
  14. }
  15. buildTypes {
  16. release {
  17. minifyEnabled false
  18. proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
  19. }
  20. }
  21. compileOptions {
  22. sourceCompatibility = 1.8
  23. targetCompatibility = 1.8
  24. }
  25. }
  26.  
  27. dependencies {
  28. implementation fileTree(dir: 'libs', include: ['*.jar'])
  29. implementation 'androidx.appcompat:appcompat:1.0.2'
  30. implementation 'com.google.android.material:material:1.0.0'
  31. implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
  32. implementation 'androidx.lifecycle:lifecycle-extensions:2.0.0'
  33. implementation 'com.google.firebase:firebase-auth:16.0.5'
  34. testImplementation 'junit:junit:4.12'
  35. androidTestImplementation 'androidx.test:runner:1.1.1'
  36. androidTestImplementation 'androidx.test.espresso:espresso-core:3.1.1'
  37. implementation("com.google.code.gson:gson:2.8.5")
  38.  
  39. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement