build.gradle 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. plugins {
  2. id 'com.android.application'
  3. id 'com.google.gms.google-services'
  4. }
  5. android {
  6. compileSdkVersion 30
  7. buildToolsVersion "30.0.2"
  8. defaultConfig {
  9. applicationId "ie.adaptcentre.heliosorganicsocialgraph"
  10. minSdkVersion 26
  11. targetSdkVersion 30
  12. versionCode 1
  13. versionName "1.0"
  14. testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
  15. }
  16. buildTypes {
  17. release {
  18. minifyEnabled false
  19. proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
  20. }
  21. }
  22. compileOptions {
  23. sourceCompatibility JavaVersion.VERSION_1_8
  24. targetCompatibility JavaVersion.VERSION_1_8
  25. }
  26. }
  27. dependencies {
  28. implementation 'com.google.android.gms:play-services-auth:19.2.0'
  29. implementation "androidx.core:core-ktx:+"
  30. implementation 'com.firebaseui:firebase-ui-auth:7.2.0'
  31. implementation 'com.android.support.constraint:constraint-layout:2.0.4'
  32. implementation 'com.google.firebase:firebase-database:19.2.1'
  33. implementation 'com.google.firebase:firebase-auth:21.0.1'
  34. implementation 'com.google.firebase:firebase-firestore:23.0.3'
  35. testImplementation 'junit:junit:4.+'
  36. androidTestImplementation 'com.android.support.test:runner:1.0.2'
  37. androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
  38. }