2015-09-14 14:35:58 +00:00
|
|
|
// Copyright 2015-present Facebook. All Rights Reserved.
|
|
|
|
|
|
|
|
buildscript {
|
|
|
|
repositories {
|
|
|
|
jcenter()
|
|
|
|
mavenLocal()
|
|
|
|
}
|
|
|
|
dependencies {
|
2015-12-14 14:23:06 +00:00
|
|
|
classpath 'com.android.tools.build:gradle:1.5.0'
|
|
|
|
classpath 'de.undercouch:gradle-download-task:2.0.0'
|
2015-09-14 14:35:58 +00:00
|
|
|
|
|
|
|
// NOTE: Do not place your application dependencies here; they belong
|
|
|
|
// in the individual module build.gradle files
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
allprojects {
|
|
|
|
repositories {
|
|
|
|
jcenter()
|
|
|
|
mavenLocal()
|
2016-04-21 12:06:29 +00:00
|
|
|
|
|
|
|
def androidSdk = System.getenv("ANDROID_SDK")
|
|
|
|
maven {
|
|
|
|
url "$androidSdk/extras/m2repository/"
|
|
|
|
}
|
2015-09-14 14:35:58 +00:00
|
|
|
}
|
|
|
|
}
|