build.gradle 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  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. }
  13. buildTypes {
  14. release {
  15. minifyEnabled false
  16. proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
  17. }
  18. }
  19. buildFeatures {
  20. dataBinding = true
  21. }
  22. }
  23. dependencies {
  24. implementation fileTree(dir: 'libs', include: ['*.jar'])
  25. implementation 'androidx.appcompat:appcompat:1.3.1'
  26. testImplementation 'junit:junit:4.12'
  27. androidTestImplementation 'androidx.test:runner:1.2.0'
  28. androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0'
  29. implementation project(':KlcCommonView')
  30. implementation project(':KlcVideoCommon')
  31. implementation project(':KlcMoney')
  32. implementation project(':KlcImJmessage')
  33. }