build.gradle 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  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.wallet'
  9. compileSdk libs.versions.compileSdk.get().toInteger()
  10. defaultConfig {
  11. minSdk libs.versions.minSdk.get().toInteger()
  12. testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
  13. consumerProguardFiles "consumer-rules.pro"
  14. }
  15. buildTypes {
  16. release {
  17. debuggable false
  18. }
  19. }
  20. viewBinding {
  21. enabled = true
  22. }
  23. compileOptions {
  24. sourceCompatibility JavaVersion.VERSION_17
  25. targetCompatibility JavaVersion.VERSION_17
  26. }
  27. kotlinOptions {
  28. jvmTarget = JavaVersion.VERSION_17.majorVersion
  29. }
  30. }
  31. dependencies {
  32. implementation project(":app")
  33. //billing
  34. implementation libs.google.billing.library
  35. implementation libs.google.billing.library.ktx
  36. implementation 'com.github.PhilJay:MPAndroidChart:v3.1.0'
  37. implementation 'com.google.android.flexbox:flexbox:3.0.0'
  38. //frame
  39. kapt libs.frame.router.compiler
  40. //test
  41. testImplementation libs.junit
  42. androidTestImplementation libs.androidx.junit
  43. androidTestImplementation libs.androidx.espresso.core
  44. }