1234567891011121314151617181920 |
- apply plugin: 'com.android.library'
- android {
- compileSdkVersion 29
- buildToolsVersion "29.0.3"
- defaultConfig {
- minSdkVersion 21
- targetSdkVersion 29
- consumerProguardFiles 'proguard-rules.pro'
- }
- lintOptions {
- warning 'InvalidPackage'
- }
- }
- dependencies {
- implementation project(':AliyunVideoCommon')
- implementation 'androidx.recyclerview:recyclerview:1.2.0'
- implementation 'com.google.code.gson:gson:2.8.5'
- }
|