12345678910111213141516171819202122 |
- apply plugin: 'com.android.library'
- android {
- compileSdkVersion 29
- buildToolsVersion '29.0.2'
- defaultConfig {
- minSdkVersion 24
- }
- buildTypes {
- release {
- minifyEnabled true
- proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
- }
- }
- lintOptions {
- abortOnError false
- }
- }
- dependencies {
- }
|