28 lines
628 B
Groovy
28 lines
628 B
Groovy
// Copyright 2015-present Facebook. All Rights Reserved.
|
|
|
|
buildscript {
|
|
repositories {
|
|
jcenter()
|
|
mavenLocal()
|
|
}
|
|
dependencies {
|
|
classpath 'com.android.tools.build:gradle:1.5.0'
|
|
classpath 'de.undercouch:gradle-download-task:2.0.0'
|
|
|
|
// NOTE: Do not place your application dependencies here; they belong
|
|
// in the individual module build.gradle files
|
|
}
|
|
}
|
|
|
|
allprojects {
|
|
repositories {
|
|
jcenter()
|
|
mavenLocal()
|
|
|
|
def androidSdk = System.getenv("ANDROID_SDK")
|
|
maven {
|
|
url "$androidSdk/extras/m2repository/"
|
|
}
|
|
}
|
|
}
|