blob: 2653d3644f33ef17ece9522e6b9ade9a1b766015 [file] [log] [blame]
apply plugin: 'android'
dependencies {
compile project(':lib')
}
android {
compileSdkVersion 15
buildToolsVersion "18.0.1"
testBuildType "proguard"
defaultConfig {
versionCode 12
versionName "2.0"
minSdkVersion 16
targetSdkVersion 16
}
buildTypes {
proguard.initWith(buildTypes.debug)
proguard {
runProguard true
proguardFile getDefaultProguardFile('proguard-android.txt')
}
}
dexOptions {
incremental false
}
}