1234567891011121314151617181920212223242526272829303132 |
- apply plugin: 'com.android.library'
- android {
- compileSdkVersion 29
- defaultConfig {
- minSdkVersion 21
- targetSdkVersion 29
- versionCode 40000
- versionName '4.0.0'
- }
- buildTypes {
- release {
- minifyEnabled false
- proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
- }
- }
- }
- dependencies {
- implementation fileTree(dir: 'libs', include: ['*.jar'])
- api 'androidx.appcompat:appcompat:1.3.1'
- api 'androidx.recyclerview:recyclerview:1.2.0'
- api 'com.hwangjr.rxbus:rxbus:1.0.6'
- api 'com.liulishuo.okdownload:okdownload:1.0.5'
- api 'com.shizhefei:ViewPagerIndicator:1.1.9.androidx'
- api 'androidx.legacy:legacy-support-v4:1.0.0'
- api project(':KlcLiveCloud')
- api project(':KlcUtils')
- }
|