mirror of
https://github.com/MinimalBible/MinimalBible
synced 2024-11-04 23:28:19 -05:00
56 lines
1.3 KiB
Groovy
56 lines
1.3 KiB
Groovy
buildscript {
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
dependencies {
|
|
classpath 'com.jakewharton.sdkmanager:gradle-plugin:0.10.+'
|
|
}
|
|
}
|
|
|
|
apply plugin: 'android-sdk-manager'
|
|
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.+'
|
|
}
|