2014-12-28 12:05:11 -05:00

24 lines
582 B
Groovy

apply plugin: 'com.android.application'
android {
compileSdkVersion 14
buildToolsVersion "21.1.2"
defaultConfig {
applicationId "walljm.dynamicbible"
minSdkVersion 12
targetSdkVersion 12
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_5
targetCompatibility JavaVersion.VERSION_1_5
}
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
}
}
}