2015-04-12 11:54:29 +00:00
|
|
|
// 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 {
|
2015-06-20 18:40:53 +00:00
|
|
|
classpath 'com.android.tools.build:gradle:1.2.3'
|
|
|
|
|
classpath 'com.android.databinding:dataBinder:1.0-rc0'
|
|
|
|
|
|
2015-04-12 11:54:29 +00:00
|
|
|
//Class path for the plugin to auto download sources
|
|
|
|
|
classpath 'com.github.xujiaao:aarLinkSources:1.0.0'
|
|
|
|
|
|
|
|
|
|
// NOTE: Do not place your application dependencies here; they belong
|
|
|
|
|
// in the individual module build.gradle files
|
|
|
|
|
}
|
|
|
|
|
}
|
2015-06-20 18:40:53 +00:00
|
|
|
|
|
|
|
|
allprojects {
|
|
|
|
|
repositories {
|
|
|
|
|
jcenter()
|
|
|
|
|
}
|
|
|
|
|
}
|