mirror of
https://github.com/facebook/react-native.git
synced 2024-11-21 21:27:46 +00:00
b4ac21152b
Summary: Having mavenLocal specified as part of the build is creating confusion as stale artifacts could be used inside the build. This Diff is attempting to remove. Developers that need it for local development can still re-add it. Changelog: [Internal] [Changed] - Remove mavenLocal() Reviewed By: ShikaSD Differential Revision: D31057038 fbshipit-source-id: 90335047a0ba5a537ce347e4c1592bfe756d4135
30 lines
714 B
Plaintext
30 lines
714 B
Plaintext
/*
|
|
* 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.
|
|
*/
|
|
|
|
pluginManagement {
|
|
repositories {
|
|
gradlePluginPortal()
|
|
google()
|
|
}
|
|
}
|
|
|
|
include(
|
|
":ReactAndroid",
|
|
":packages:react-native-codegen:android",
|
|
":packages:rn-tester:android:app"
|
|
)
|
|
|
|
// Include this to enable codegen Gradle plugin.
|
|
includeBuild("packages/react-native-gradle-plugin/")
|
|
|
|
// Include this to build the Android template as well and make sure is not broken.
|
|
if (File("template/node_modules/").exists()) {
|
|
includeBuild("template/android/") {
|
|
name = "template-android"
|
|
}
|
|
}
|