| 1234567891011121314151617181920212223242526 |
- apply plugin: 'com.android.library'
- //apply plugin: 'img-optimizer'
- android {
- compileSdkVersion 30
- buildToolsVersion "30.0.1"
- defaultConfig {
- minSdkVersion 21
- targetSdkVersion 30
- vectorDrawables.useSupportLibrary = true
- }
- lintOptions {
- checkReleaseBuilds false
- abortOnError false
- }
- }
- dependencies {
- implementation fileTree(dir: 'libs', include: ['*.jar'])
- implementation 'androidx.appcompat:appcompat:1.2.0'
- }
|