| 123456789101112131415161718192021222324 |
- apply plugin: 'com.android.library'
- android {
- compileSdkVersion 29
- buildToolsVersion "29.0.2"
- defaultConfig {
- minSdkVersion 23
- targetSdkVersion 29
- }
- buildTypes {
- release {
- minifyEnabled false
- proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
- }
- }
- }
- dependencies {
- implementation 'com.android.support:support-v4:28.0.0'
- //glide
- implementation 'com.github.bumptech.glide:glide:4.11.0'
- }
|