build.gradle 1016 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  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.party'
  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. //test
  35. testImplementation libs.junit
  36. androidTestImplementation libs.androidx.junit
  37. androidTestImplementation libs.androidx.espresso.core
  38. }