Files
TTUtils/niceimageview/build.gradle
2021-10-11 20:22:32 +08:00

43 lines
662 B
Groovy

apply plugin: 'com.android.library'
android {
compileSdkVersion 28
defaultConfig {
minSdkVersion 14
targetSdkVersion 28
versionCode 1
versionName "1.0"
}
buildTypes {
zhanRuiRelease {
}
zhanRuiDebug {
}
zhanRuiUserdebug {
}
debug {
}
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation 'com.android.support:appcompat-v7:28.0.0'
}