build.gradle 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  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.visitors'
  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. implementation libs.blur.view
  32. //frame
  33. kapt libs.frame.router.compiler
  34. //test
  35. testImplementation libs.junit
  36. androidTestImplementation libs.androidx.junit
  37. androidTestImplementation libs.androidx.espresso.core
  38. }