2014-07-04 22:09:25 -04:00
|
|
|
apply plugin: 'com.android.application'
|
|
|
|
|
|
|
|
android {
|
|
|
|
compileSdkVersion 20
|
|
|
|
buildToolsVersion '20.0.0'
|
|
|
|
|
|
|
|
defaultConfig {
|
|
|
|
applicationId "org.bspeice.minimalbible"
|
|
|
|
minSdkVersion 8
|
|
|
|
targetSdkVersion 20
|
|
|
|
versionCode 1
|
|
|
|
versionName "1.0"
|
|
|
|
}
|
|
|
|
buildTypes {
|
|
|
|
release {
|
|
|
|
runProguard false
|
|
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
|
|
}
|
|
|
|
}
|
2014-07-04 22:25:35 -04:00
|
|
|
packagingOptions {
|
|
|
|
exclude 'META-INF/LICENSE.txt'
|
|
|
|
exclude 'META-INF/NOTICE.txt'
|
|
|
|
exclude 'META-INF/DEPENDENCIES'
|
|
|
|
exclude 'META-INF/LICENSE'
|
|
|
|
exclude 'META-INF/NOTICE'
|
|
|
|
}
|
2014-07-04 22:09:25 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2014-07-04 22:25:35 -04:00
|
|
|
compile project(path: ':jsword-minimalbible', configuration: 'buildJSword')
|
|
|
|
|
2014-07-04 22:09:25 -04:00
|
|
|
compile 'com.android.support:appcompat-v7:20.+'
|
|
|
|
}
|