mirror of
https://github.com/sudoxnym/habitica-android.git
synced 2026-04-14 19:56:32 +00:00
26 lines
No EOL
732 B
Groovy
26 lines
No EOL
732 B
Groovy
// Top-level build file where you can add configuration options common to all sub-projects/modules.
|
|
|
|
buildscript {
|
|
repositories {
|
|
jcenter()
|
|
//Plugin to download sources on a fake maven github repo
|
|
maven { url 'https://raw.github.com/xujiaao/mvn-repository/master/releases' }
|
|
|
|
}
|
|
dependencies {
|
|
classpath 'com.android.tools.build:gradle:1.3.0'
|
|
classpath 'com.android.databinding:dataBinder:1.0-rc1'
|
|
|
|
//Class path for the plugin to auto download sources
|
|
classpath 'com.github.xujiaao:aarLinkSources:1.0.0'
|
|
|
|
classpath 'com.neenbedankt.gradle.plugins:android-apt:1.4'
|
|
|
|
}
|
|
}
|
|
|
|
allprojects {
|
|
repositories {
|
|
jcenter()
|
|
}
|
|
} |