build.gradle 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  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.im'
  9. compileSdk libs.versions.compileSdk.get().toInteger()
  10. defaultConfig {
  11. minSdk libs.versions.minSdk.get().toInteger()
  12. resConfigs "zh", "en", "in"
  13. testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
  14. manifestPlaceholders = [
  15. appAuthRedirectScheme: "",
  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. annotationProcessor libs.auto.service
  39. implementation libs.tencent.tui.core
  40. implementation project(":timcommon")
  41. implementation project(":tuichat")
  42. implementation project(":tuicontact")
  43. implementation project(":tuiconversation")
  44. //test
  45. testImplementation libs.junit
  46. androidTestImplementation libs.androidx.junit
  47. androidTestImplementation libs.androidx.espresso.core
  48. }