mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
Summary: Pull Request resolved: https://github.com/facebook/react-native/pull/38946 I'm doing another pass of moving all the various version numbers of the Gradle Plugin inside the `[plugins]` section of the version catalog. Changelog: [Internal] [Changed] - Consolidate Gradle Plugin versions inside the version catalog Reviewed By: mdvacca Differential Revision: D48233147 fbshipit-source-id: afd12e5377d2d88c53cef4e6913b5c49b3da5bbb
19 lines
708 B
Kotlin
19 lines
708 B
Kotlin
/*
|
|
* Copyright (c) Meta Platforms, Inc. and affiliates.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*/
|
|
|
|
// This is the top level build.gradle.kts file used when the users
|
|
// is doing a build from source. It's triggered as the user
|
|
// will add an `includeBuild(../node_modules/react-native)` in
|
|
// their settings.gradle.kts file.
|
|
// More on this here: https://reactnative.dev/contributing/how-to-build-from-source
|
|
plugins {
|
|
alias(libs.plugins.android.library) apply false
|
|
alias(libs.plugins.android.application) apply false
|
|
alias(libs.plugins.download) apply false
|
|
alias(libs.plugins.kotlin.android) apply false
|
|
}
|