mirror of
https://github.com/status-im/react-native.git
synced 2025-01-13 11:05:21 +00:00
0a66acebdc
Summary:
Similar to 6bfabee0f8
but upgrading to 2.2.2 which is the what android studio suggests using
http://tools.android.com/tech-docs/new-build-system
<img width="625" alt="screen shot 2016-12-01 at 3 06 25 pm" src="https://cloud.githubusercontent.com/assets/20404/20810456/d1e759e8-b7d7-11e6-9fa3-fc79f1112f5e.png">
Closes https://github.com/facebook/react-native/pull/11252
Differential Revision: D4262769
fbshipit-source-id: 78bc910a573fcf5b2722d3b29a5604639029a662
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:2.2.2'
|
|
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/"
|
|
}
|
|
}
|
|
}
|