mirror of
https://github.com/facebook/react-native.git
synced 2024-11-21 21:27:46 +00:00
dbbc1c1624
Summary: Changelog: [Android][Added] - Basic definition for react gradle plugin Adds plugin and build configuration + copies config from react.gradle to extension. Copies internals of react.gradle to the plugin. Will be refactored in the next commits. Reviewed By: mdvacca Differential Revision: D25693008 fbshipit-source-id: b0feaa02cee8a1ee94d032426d19c501ff3b2534
25 lines
576 B
Plaintext
25 lines
576 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()
|
|
mavenLocal()
|
|
google()
|
|
}
|
|
}
|
|
|
|
include(
|
|
":ReactAndroid",
|
|
":packages:react-native-codegen:android",
|
|
":packages:rn-tester:android:app"
|
|
)
|
|
|
|
// Include this to enable codegen Gradle plugin.
|
|
includeBuild("packages/react-native-codegen/android")
|
|
includeBuild("packages/react-native-gradle-plugin/")
|