build.gradle 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  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.operation'
  9. compileSdk libs.versions.compileSdk.get().toInteger()
  10. defaultConfig {
  11. minSdk libs.versions.minSdk.get().toInteger()
  12. testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
  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. //google play core
  35. implementation libs.play.review
  36. implementation libs.play.review.ktx
  37. compileOnly project(":module:profile")
  38. //test
  39. testImplementation libs.junit
  40. androidTestImplementation libs.androidx.junit
  41. androidTestImplementation libs.androidx.espresso.core
  42. }