mirror of
https://github.com/MinimalBible/MinimalBible-Legacy
synced 2024-11-13 19:48:38 -05:00
75 lines
2.1 KiB
Groovy
75 lines
2.1 KiB
Groovy
apply plugin: 'android'
|
|
apply plugin: 'android-apt'
|
|
|
|
buildscript {
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
dependencies {
|
|
classpath 'com.neenbedankt.gradle.plugins:android-apt:1.2+'
|
|
}
|
|
}
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
compile project(path: ':jsword-minimalbible', configuration: 'buildJSword')
|
|
compile project(':appcompat_v7')
|
|
|
|
// apt "org.androidannotations:androidannotations:3.0+"
|
|
// compile "org.androidannotations:androidannotations-api:3.0+"
|
|
|
|
apt 'com.squareup.dagger:dagger-compiler:1.2.1+'
|
|
compile 'com.squareup.dagger:dagger:1.2.1+'
|
|
|
|
apt 'com.jakewharton:butterknife:5.0.1'
|
|
compile 'com.jakewharton:butterknife:5.0.1'
|
|
|
|
compile 'com.readystatesoftware.systembartint:systembartint:1.0.3'
|
|
compile 'de.greenrobot:eventbus:2.2.0'
|
|
|
|
// Handled by appcompat
|
|
// compile 'com.google.android:support-v4:r7'
|
|
}
|
|
|
|
android {
|
|
compileSdkVersion 19
|
|
buildToolsVersion "19.0.3"
|
|
|
|
sourceSets {
|
|
main {
|
|
manifest.srcFile 'AndroidManifest.xml'
|
|
java.srcDirs = ['src']
|
|
resources.srcDirs = ['src']
|
|
aidl.srcDirs = ['src']
|
|
renderscript.srcDirs = ['src']
|
|
res.srcDirs = ['res']
|
|
assets.srcDirs = ['assets']
|
|
}
|
|
|
|
// Move the tests to tests/java, tests/res, etc...
|
|
instrumentTest.setRoot('tests')
|
|
|
|
// Move the build types to build-types/<type>
|
|
// For instance, build-types/debug/java, build-types/debug/AndroidManifest.xml, ...
|
|
// This moves them out of them default location under src/<type>/... which would
|
|
// conflict with src/ being used by the main source set.
|
|
// Adding new build types or product flavors should be accompanied
|
|
// by a similar customization.
|
|
debug.setRoot('build-types/debug')
|
|
release.setRoot('build-types/release')
|
|
}
|
|
|
|
packagingOptions {
|
|
exclude 'META-INF/LICENSE.txt'
|
|
exclude 'META-INF/NOTICE.txt'
|
|
exclude 'META-INF/DEPENDENCIES'
|
|
exclude 'META-INF/LICENSE'
|
|
exclude 'META-INF/NOTICE'
|
|
}
|
|
}
|
|
|
|
|