mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
cf8368f204
Summary: Android Studio 3.6.3 is now available in the stable channel https://androidstudio.googleblog.com/2020/04/android-studio-363-available.html EDIT: Another patch update to `3.6.4` was released in July 2020: > This minor update supports compatibility with new default settings and features for package visibility in Android 11. Details: https://developer.android.com/studio/releases/gradle-plugin#3-6-0 ## Changelog [Android] [Changed] - Update Android Gradle plugin to 3.6.4 Pull Request resolved: https://github.com/facebook/react-native/pull/28170 Test Plan: Build project Reviewed By: mdvacca Differential Revision: D23357163 Pulled By: fkgozali fbshipit-source-id: 45f1bfc8a1b21e60c6da03e60e4fa3b1e30c221c
26 lines
467 B
Groovy
26 lines
467 B
Groovy
/*
|
|
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*/
|
|
|
|
buildscript {
|
|
repositories {
|
|
mavenLocal()
|
|
google()
|
|
jcenter()
|
|
}
|
|
dependencies {
|
|
classpath("com.android.tools.build:gradle:3.6.4")
|
|
}
|
|
}
|
|
|
|
allprojects {
|
|
repositories {
|
|
mavenLocal()
|
|
google()
|
|
jcenter()
|
|
}
|
|
}
|