mirror of
https://github.com/status-im/react-native.git
synced 2025-01-12 18:44:25 +00:00
51b12dd375
Summary: Just change gradle.properties version number to change gradle version is not the right way. Because sometimes the gradlew and gradlew.bat or even the jar need to be updated too. I also add the wrapper task to `build.gradle`, so next time, we just need to change the version number and execute `gradlew wrapper`. pass all current ci. none [GENERAL] [BUGFIX] [Android] - fix gradle wrapper issue Pull Request resolved: https://github.com/facebook/react-native/pull/19976 Differential Revision: D9229655 Pulled By: hramos fbshipit-source-id: 63d1ddea6174f87778612a4e6711baac5787b0f8
44 lines
1.0 KiB
Groovy
44 lines
1.0 KiB
Groovy
// Copyright (c) 2015-present, Facebook, Inc.
|
|
|
|
// This source code is licensed under the MIT license found in the
|
|
// LICENSE file in the root directory of this source tree.
|
|
|
|
buildscript {
|
|
repositories {
|
|
jcenter()
|
|
mavenLocal()
|
|
maven {
|
|
url 'https://maven.google.com/'
|
|
name 'Google'
|
|
}
|
|
}
|
|
dependencies {
|
|
classpath 'com.android.tools.build:gradle:2.3.3'
|
|
classpath 'de.undercouch:gradle-download-task:3.4.3'
|
|
|
|
// NOTE: Do not place your application dependencies here; they belong
|
|
// in the individual module build.gradle files
|
|
}
|
|
}
|
|
|
|
allprojects {
|
|
repositories {
|
|
jcenter()
|
|
mavenLocal()
|
|
maven {
|
|
url 'https://maven.google.com/'
|
|
name 'Google'
|
|
}
|
|
|
|
def androidSdk = System.getenv("ANDROID_SDK")
|
|
maven {
|
|
url "$androidSdk/extras/m2repository/"
|
|
}
|
|
}
|
|
}
|
|
|
|
task wrapper(type: Wrapper) {
|
|
gradleVersion = '4.4'
|
|
distributionUrl = distributionUrl.replace("bin", "all")
|
|
}
|