build.gradle 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. apply plugin: 'com.android.library'
  2. android {
  3. compileSdkVersion 29
  4. buildToolsVersion "29.0.3"
  5. defaultConfig {
  6. minSdkVersion 19
  7. targetSdkVersion 29
  8. versionCode 1
  9. versionName "1.0"
  10. multiDexEnabled true
  11. testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
  12. javaCompileOptions {
  13. annotationProcessorOptions {
  14. arguments = [AROUTER_MODULE_NAME: project.getName()]
  15. }
  16. }
  17. }
  18. buildTypes {
  19. release {
  20. minifyEnabled false
  21. proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
  22. }
  23. }
  24. buildFeatures {
  25. dataBinding = true
  26. }
  27. }
  28. dependencies {
  29. implementation fileTree(dir: "libs", include: ["*.jar"])
  30. implementation 'androidx.appcompat:appcompat:1.3.1'
  31. testImplementation 'junit:junit:4.12'
  32. androidTestImplementation 'androidx.test.ext:junit:1.1.1'
  33. androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0'
  34. annotationProcessor 'com.alibaba:arouter-compiler:1.5.2'
  35. api 'com.alibaba:arouter-api:1.5.2'
  36. implementation project(':KlcCommonView')
  37. implementation project(':KlcHome')
  38. implementation project(':KlcMe')
  39. implementation project(':KlcShortVideo')
  40. implementation project(':KlcTrend')
  41. implementation project(':KlcImJmessage')
  42. }