29 lines
495 B
Groovy
29 lines
495 B
Groovy
apply plugin: 'com.android.library'
|
|
|
|
android {
|
|
namespace "com.shehuan.niv"
|
|
|
|
compileSdkVersion 28
|
|
|
|
defaultConfig {
|
|
minSdkVersion 14
|
|
targetSdkVersion 28
|
|
}
|
|
|
|
buildTypes {
|
|
zhanRuiDebug {}
|
|
zhanRuiRelease {}
|
|
CrosshatchDebug {}
|
|
CrosshatchRelease {}
|
|
debug {}
|
|
release {}
|
|
}
|
|
|
|
}
|
|
|
|
dependencies {
|
|
implementation fileTree(dir: 'libs', include: ['*.jar'])
|
|
|
|
implementation 'com.android.support:appcompat-v7:28.0.0'
|
|
}
|