23 lines
417 B
Groovy
Raw Normal View History

2014-10-17 00:06:56 +04:00
apply plugin: 'com.android.library'
android {
2014-10-17 00:17:34 +04:00
compileSdkVersion 19
2014-10-17 00:06:56 +04:00
buildToolsVersion "20.0.0"
defaultConfig {
minSdkVersion 3
targetSdkVersion 17
}
2014-10-17 00:17:34 +04:00
lintOptions {
abortOnError false
}
2014-10-17 00:06:56 +04:00
buildTypes {
release {
minifyEnabled false
2014-10-17 00:06:56 +04:00
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
}
}
}