mirror of
https://github.com/MinimalBible/MinimalBible
synced 2024-11-04 23:28:19 -05:00
8b5e6ede51
Still requires shenanigans in its own right, but this is a much better platform. Plus, I don't need to mess with the application context, all I do is change the injections.
45 lines
1.1 KiB
Groovy
45 lines
1.1 KiB
Groovy
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'
|
|
}
|
|
}
|
|
packagingOptions {
|
|
exclude 'META-INF/LICENSE.txt'
|
|
exclude 'META-INF/NOTICE.txt'
|
|
exclude 'META-INF/DEPENDENCIES'
|
|
exclude 'META-INF/LICENSE'
|
|
exclude 'META-INF/NOTICE'
|
|
}
|
|
productFlavors {
|
|
testConfig {
|
|
minSdkVersion 8
|
|
applicationId 'org.bspeice.minimalbible'
|
|
targetSdkVersion 20
|
|
}
|
|
mainConfig {
|
|
minSdkVersion 8
|
|
applicationId 'org.bspeice.minimalbible'
|
|
targetSdkVersion 20
|
|
}
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
compile 'com.squareup.dagger:dagger:1.2.1'
|
|
provided 'com.squareup.dagger:dagger-compiler:1.2.1'
|
|
compile 'com.android.support:appcompat-v7:20.+'
|
|
}
|