2017-08-11 21:25:15 +08:00

26 lines
541 B
Groovy
Executable File

apply plugin: 'com.android.library'
android {
compileSdkVersion 26
buildToolsVersion "25.0.2"
defaultConfig {
minSdkVersion 21
targetSdkVersion 26
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled true
}
}
}
dependencies {
compile 'com.github.michael-rapp:android-util:1.15.0'
compile 'com.android.support:support-annotations:26.0.0'
compile 'com.android.support:appcompat-v7:26.0.0'
testCompile 'junit:junit:4.12'
}