build.gradle 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  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. testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
  13. manifestPlaceholders = [
  14. appAuthRedirectScheme: "",
  15. ]
  16. }
  17. buildTypes {
  18. release {
  19. debuggable false
  20. }
  21. }
  22. viewBinding {
  23. enabled = true
  24. }
  25. compileOptions {
  26. sourceCompatibility JavaVersion.VERSION_17
  27. targetCompatibility JavaVersion.VERSION_17
  28. }
  29. kotlinOptions {
  30. jvmTarget = JavaVersion.VERSION_17.majorVersion
  31. }
  32. }
  33. dependencies {
  34. implementation project(":app")
  35. //gms
  36. implementation libs.gms.google.services.auth
  37. implementation libs.google.lib.phone.number
  38. implementation libs.gms.play.services.auth.api.phone
  39. // //apple
  40. // implementation libs.apple.appauth
  41. // implementation libs.tiktok.core
  42. // implementation libs.tiktok.auth
  43. //frame
  44. kapt libs.frame.router.compiler
  45. // implementation (libs.whatsapp.otp.android.sdk)
  46. //test
  47. testImplementation libs.junit
  48. androidTestImplementation libs.androidx.junit
  49. androidTestImplementation libs.androidx.espresso.core
  50. }