18 lines
336 B
Groovy
18 lines
336 B
Groovy
apply plugin: 'com.android.library'
|
|
android {
|
|
compileSdkVersion 23
|
|
buildToolsVersion '23.0.2'
|
|
|
|
defaultConfig {
|
|
minSdkVersion 7
|
|
targetSdkVersion 7
|
|
}
|
|
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled false
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
|
|
}
|
|
}
|
|
}
|
|
dependencies {} |