mirror of
https://github.com/MinimalBible/MinimalBible-Legacy
synced 2025-07-03 06:44:51 -04:00
Dependencies are now fetched via Gradle
This commit is contained in:
@ -1,11 +1,39 @@
|
||||
apply plugin: 'android'
|
||||
apply plugin: 'android-apt'
|
||||
|
||||
buildscript {
|
||||
repositories {
|
||||
mavenCentral()
|
||||
}
|
||||
dependencies {
|
||||
classpath 'com.neenbedankt.gradle.plugins:android-apt:1.2+'
|
||||
}
|
||||
}
|
||||
|
||||
repositories {
|
||||
mavenCentral()
|
||||
}
|
||||
|
||||
dependencies {
|
||||
compile fileTree('libs') {
|
||||
include '*.jar'
|
||||
}
|
||||
compile project(path: ':jsword-minimalbible', configuration: 'buildJSword')
|
||||
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.1.0'
|
||||
compile 'com.squareup.dagger:dagger:1.1.0'
|
||||
|
||||
compile 'com.readystatesoftware.systembartint:systembartint:1.0.3'
|
||||
compile 'de.greenrobot:eventbus:2.2.0'
|
||||
compile 'com.google.android:support-v4:r7'
|
||||
}
|
||||
|
||||
apt {
|
||||
arguments {
|
||||
androidManifestFile variant.processResources.manifestFile
|
||||
resourcePackageName "org.bspeice.minimalbible"
|
||||
}
|
||||
}
|
||||
|
||||
android {
|
||||
|
Reference in New Issue
Block a user