soden

Untitled

Jun 17th, 2022
185
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.98 KB | None | 0 0
  1. plugins {
  2. id 'com.android.application'
  3. id 'kotlin-android'
  4. id 'com.google.gms.google-services'
  5. id 'kotlin-kapt'
  6.  
  7. }
  8.  
  9. android {
  10. compileSdk 31
  11.  
  12. buildFeatures{
  13. viewBinding = true
  14. dataBinding = true
  15. }
  16.  
  17. defaultConfig {
  18. applicationId "com.example.TugaseBesarSyarif"
  19. minSdk 21
  20. targetSdk 31
  21. versionCode 1
  22. versionName "1.0"
  23. testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
  24. }
  25.  
  26. buildTypes {
  27. release {
  28. minifyEnabled false
  29. proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
  30. }
  31. }
  32. compileOptions {
  33. sourceCompatibility JavaVersion.VERSION_1_8
  34. targetCompatibility JavaVersion.VERSION_1_8
  35. }
  36. kotlinOptions {
  37. jvmTarget = '1.8'
  38. }
  39. }
  40.  
  41. dependencies {
  42.  
  43.  
  44. implementation platform('com.google.firebase:firebase-bom:30.1.0')
  45. implementation 'com.google.firebase:firebase-analytics-ktx'
  46. implementation 'com.google.firebase:firebase-storage-ktx:20.0.1'
  47. implementation 'androidx.legacy:legacy-support-v4:1.0.0'
  48. implementation 'com.google.firebase:firebase-database-ktx:20.0.5'
  49. implementation 'com.google.firebase:firebase-auth-ktx:21.0.5'
  50. def activity_version = "1.2.0-rc01"
  51. def fragment_version = "1.3.0-rc01"
  52. implementation 'com.android.databinding:viewbinding:4.0.1'
  53. implementation 'androidx.core:core-ktx:1.8.0'
  54. implementation 'androidx.appcompat:appcompat:1.4.2'
  55. implementation 'com.google.android.material:material:1.6.1'
  56. implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
  57. testImplementation 'junit:junit:4.+'
  58. implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-core:1.6.2'
  59. androidTestImplementation 'androidx.test.ext:junit:1.1.3'
  60. androidTestImplementation 'androidx.test.espresso:espresso-core:3.4.0'
  61. implementation 'de.hdodenhof:circleimageview:3.1.0'
  62. }
Add Comment
Please, Sign In to add comment