build.gradle 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  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.room'
  9. compileSdk libs.versions.compileSdk.get().toInteger()
  10. defaultConfig {
  11. minSdk libs.versions.minSdk.get().toInteger()
  12. testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
  13. ndk {
  14. abiFilters "armeabi-v7a"
  15. abiFilters "arm64-v8a"
  16. }
  17. }
  18. buildTypes {
  19. release {
  20. debuggable false
  21. }
  22. }
  23. viewBinding {
  24. enabled = true
  25. }
  26. compileOptions {
  27. sourceCompatibility JavaVersion.VERSION_17
  28. targetCompatibility JavaVersion.VERSION_17
  29. }
  30. kotlinOptions {
  31. jvmTarget = JavaVersion.VERSION_17.majorVersion
  32. }
  33. }
  34. dependencies {
  35. implementation project(":app")
  36. //frame
  37. kapt libs.frame.router.compiler
  38. //test
  39. testImplementation libs.junit
  40. androidTestImplementation libs.androidx.junit
  41. androidTestImplementation libs.androidx.espresso.core
  42. }