123456789101112131415161718192021 |
- apply plugin: 'com.android.library'
- android {
- compileSdkVersion 26
- buildToolsVersion '29.0.0'
- defaultConfig {
- minSdkVersion 19
- versionCode 11
- versionName "2.0.3"
- }
- buildTypes {
- release {
- minifyEnabled false
- proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
- }
- }
- lintOptions {
- abortOnError false
- }
- }
|