1234567891011121314151617181920212223242526272829 |
- apply plugin: 'com.android.library'
- android {
- compileSdkVersion rootProject.ext.compileSdkVersion
- defaultConfig {
- minSdkVersion rootProject.ext.minSdkVersion
- targetSdkVersion rootProject.ext.targetSdkVersion
- versionCode rootProject.ext.versionCode
- versionName rootProject.ext.versionName
- }
- buildTypes {
- release {
- minifyEnabled false
- proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
- }
- }
- }
- dependencies {
- implementation fileTree(dir: 'libs', include: ['*.jar'])
- implementation("com.android.support:appcompat-v7:${V7_APPCOMPAT_VERSION}")
- implementation 'com.github.bumptech.glide:glide:4.2.0'
- annotationProcessor 'com.github.bumptech.glide:compiler:4.2.0'
- }
|