build.gradle 580 B

12345678910111213141516171819202122232425
  1. plugins {
  2. id 'kotlin-kapt'
  3. id 'org.jetbrains.kotlin.android'
  4. }
  5. apply from: '../common.gradle'
  6. android{
  7. namespace 'com.develop.setting'
  8. sourceSets {
  9. main {
  10. jniLibs.srcDirs = ['libs']
  11. }
  12. }
  13. }
  14. dependencies {
  15. api project(path: ':BusinessCommon')
  16. implementation 'androidx.appcompat:appcompat:1.4.1'
  17. implementation 'com.google.android.material:material:1.7.0'
  18. implementation 'androidx.constraintlayout:constraintlayout:2.1.3'
  19. kapt 'com.alibaba:arouter-compiler:1.5.2'
  20. kapt "androidx.room:room-compiler:2.4.2"
  21. }