mirror of
https://gitlab.com/walljm/dynamicbible.git
synced 2025-07-26 17:10:11 -04:00
24 lines
582 B
Groovy
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'
|
|
}
|
|
}
|
|
}
|