build.gradle 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  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.rank'
  8. compileSdk libs.versions.compileSdk.get().toInteger()
  9. defaultConfig {
  10. minSdk libs.versions.minSdk.get().toInteger()
  11. testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
  12. consumerProguardFiles "consumer-rules.pro"
  13. }
  14. buildTypes {
  15. release {
  16. debuggable false
  17. }
  18. }
  19. viewBinding {
  20. enabled = true
  21. }
  22. compileOptions {
  23. sourceCompatibility JavaVersion.VERSION_17
  24. targetCompatibility JavaVersion.VERSION_17
  25. }
  26. kotlinOptions {
  27. jvmTarget = JavaVersion.VERSION_17.majorVersion
  28. }
  29. }
  30. dependencies {
  31. implementation project(":app")
  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. }