mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
15909fab95
Summary: Pull Request resolved: https://github.com/facebook/react-native/pull/44832 I'm renaming this folder as now we have 2 gradle plugins + we currently have `package/react-native-gradle-plugin/react-native-gradle-plugin/` which is confusing so we can just call this folder `packages/gradle-plugin/` to be consistent with the NPM package name Changelog: [Internal] [Changed] - packages/react-native-gradle-plugin/ -> packages/gradle-plugin/ Reviewed By: blakef Differential Revision: D58284883 fbshipit-source-id: 5a7bb40a5d80f6fbab4ffb29e44107453f1013ec
18 lines
428 B
Markdown
18 lines
428 B
Markdown
# React Native Gradle Plugin
|
|
|
|
This plugin is used by React Native Apps to configure themselves.
|
|
|
|
NOTE: It's important that this folder is called `react-native-gradle-plugin` as it's used
|
|
by users in their `build.gradle` file as follows:
|
|
|
|
```gradle
|
|
buildscript {
|
|
// ...
|
|
dependencies {
|
|
classpath("com.facebook.react:react-native-gradle-plugin")
|
|
}
|
|
}
|
|
```
|
|
|
|
The name of the artifact is imposed by the folder name.
|