build.gradle 997 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. plugins {
  2. id 'com.android.dynamic-feature'
  3. id 'org.jetbrains.kotlin.android'
  4. id 'org.jetbrains.kotlin.kapt'
  5. }
  6. android {
  7. namespace 'com.adealink.weparty.userprotect'
  8. compileSdk libs.versions.compileSdk.get().toInteger()
  9. defaultConfig {
  10. minSdk libs.versions.minSdk.get().toInteger()
  11. testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
  12. }
  13. buildTypes {
  14. release {
  15. debuggable false
  16. }
  17. }
  18. compileOptions {
  19. sourceCompatibility JavaVersion.VERSION_17
  20. targetCompatibility JavaVersion.VERSION_17
  21. }
  22. kotlinOptions {
  23. jvmTarget = JavaVersion.VERSION_17.majorVersion
  24. }
  25. viewBinding {
  26. enabled = true
  27. }
  28. }
  29. dependencies {
  30. implementation project(":app")
  31. //frame
  32. kapt libs.frame.router.compiler
  33. //test
  34. testImplementation libs.junit
  35. androidTestImplementation libs.androidx.junit
  36. androidTestImplementation libs.androidx.espresso.core
  37. }