mirror of
https://github.com/MinimalBible/MinimalBible-Legacy
synced 2024-10-11 04:31:42 -04:00
26 lines
595 B
Groovy
26 lines
595 B
Groovy
|
apply plugin: 'com.android.application'
|
||
|
|
||
|
android {
|
||
|
compileSdkVersion 'android-L'
|
||
|
buildToolsVersion "20.0.0"
|
||
|
|
||
|
defaultConfig {
|
||
|
applicationId "org.bspeice.minimalbible"
|
||
|
minSdkVersion 8
|
||
|
targetSdkVersion 'L'
|
||
|
versionCode 1
|
||
|
versionName "1.0"
|
||
|
}
|
||
|
buildTypes {
|
||
|
release {
|
||
|
runProguard false
|
||
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
dependencies {
|
||
|
compile fileTree(dir: 'libs', include: ['*.jar'])
|
||
|
compile 'com.android.support:appcompat-v7:19.+'
|
||
|
}
|