build.gradle 1.1 KB

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