build.gradle 825 B

1234567891011121314151617181920212223242526272829303132
  1. apply plugin: 'com.android.library'
  2. android {
  3. compileSdkVersion 29
  4. defaultConfig {
  5. minSdkVersion 21
  6. targetSdkVersion 29
  7. versionCode 40000
  8. versionName '4.0.0'
  9. }
  10. buildTypes {
  11. release {
  12. minifyEnabled false
  13. proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
  14. }
  15. }
  16. }
  17. dependencies {
  18. implementation fileTree(dir: 'libs', include: ['*.jar'])
  19. api 'androidx.appcompat:appcompat:1.3.1'
  20. api 'androidx.recyclerview:recyclerview:1.2.0'
  21. api 'com.hwangjr.rxbus:rxbus:1.0.6'
  22. api 'com.liulishuo.okdownload:okdownload:1.0.5'
  23. api 'com.shizhefei:ViewPagerIndicator:1.1.9.androidx'
  24. api 'androidx.legacy:legacy-support-v4:1.0.0'
  25. api project(':KlcLiveCloud')
  26. api project(':KlcUtils')
  27. }