build.gradle 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. plugins {
  2. id 'com.android.dynamic-feature'
  3. id 'org.jetbrains.kotlin.android'
  4. id 'org.jetbrains.kotlin.kapt'
  5. id 'kotlin-parcelize'
  6. }
  7. android {
  8. namespace 'com.adealink.weparty.account'
  9. compileSdk libs.versions.compileSdk.get().toInteger()
  10. defaultConfig {
  11. minSdk libs.versions.minSdk.get().toInteger()
  12. resConfigs "zh", "en", "in"
  13. testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
  14. manifestPlaceholders = [
  15. appAuthRedirectScheme: "",
  16. ]
  17. }
  18. buildTypes {
  19. release {
  20. debuggable false
  21. }
  22. }
  23. viewBinding {
  24. enabled = true
  25. }
  26. compileOptions {
  27. sourceCompatibility JavaVersion.VERSION_17
  28. targetCompatibility JavaVersion.VERSION_17
  29. }
  30. kotlinOptions {
  31. jvmTarget = JavaVersion.VERSION_17.majorVersion
  32. }
  33. }
  34. dependencies {
  35. implementation project(":app")
  36. //gms
  37. implementation libs.gms.google.services.auth
  38. implementation libs.google.lib.phone.number
  39. implementation libs.gms.play.services.auth.api.phone
  40. // //apple
  41. // implementation libs.apple.appauth
  42. // implementation libs.tiktok.core
  43. // implementation libs.tiktok.auth
  44. //frame
  45. kapt libs.frame.router.compiler
  46. // implementation (libs.whatsapp.otp.android.sdk)
  47. //test
  48. testImplementation libs.junit
  49. androidTestImplementation libs.androidx.junit
  50. androidTestImplementation libs.androidx.espresso.core
  51. }