@react-native/gradle-plugin 0.86.1 → 0.86.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -1,20 +1,20 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@react-native/gradle-plugin",
|
|
3
|
-
"version": "0.86.
|
|
3
|
+
"version": "0.86.2",
|
|
4
4
|
"description": "Gradle Plugin for React Native",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"repository": {
|
|
7
7
|
"type": "git",
|
|
8
|
-
"url": "git+https://github.com/
|
|
8
|
+
"url": "git+https://github.com/react/react-native.git",
|
|
9
9
|
"directory": "packages/gradle-plugin"
|
|
10
10
|
},
|
|
11
|
-
"homepage": "https://github.com/
|
|
11
|
+
"homepage": "https://github.com/react/react-native/tree/HEAD/packages/gradle-plugin#readme",
|
|
12
12
|
"keywords": [
|
|
13
13
|
"gradle",
|
|
14
14
|
"plugin",
|
|
15
15
|
"react-native"
|
|
16
16
|
],
|
|
17
|
-
"bugs": "https://github.com/
|
|
17
|
+
"bugs": "https://github.com/react/react-native/issues",
|
|
18
18
|
"engines": {
|
|
19
19
|
"node": "^20.19.4 || ^22.13.0 || ^24.3.0 || >= 25.0.0"
|
|
20
20
|
},
|
package/react-native-gradle-plugin/src/main/kotlin/com/facebook/react/utils/DependencyUtils.kt
CHANGED
|
@@ -130,7 +130,7 @@ internal object DependencyUtils {
|
|
|
130
130
|
project.rootProject.allprojects { eachProject ->
|
|
131
131
|
eachProject.configurations.all { configuration ->
|
|
132
132
|
// Here we set a dependencySubstitution for both react-native and hermes-engine as those
|
|
133
|
-
// coordinates are voided due to https://github.com/
|
|
133
|
+
// coordinates are voided due to https://github.com/react/react-native/issues/35210
|
|
134
134
|
// This allows users to import libraries that are still using
|
|
135
135
|
// implementation("com.facebook.react:react-native:+") and resolve the right dependency.
|
|
136
136
|
configuration.resolutionStrategy.dependencySubstitution {
|
|
@@ -165,14 +165,14 @@ internal object DependencyUtils {
|
|
|
165
165
|
Triple(
|
|
166
166
|
"com.facebook.react:react-native",
|
|
167
167
|
"${coordinates.reactGroupString}:react-android:${coordinates.versionString}",
|
|
168
|
-
"The react-native artifact was deprecated in favor of react-android due to https://github.com/
|
|
168
|
+
"The react-native artifact was deprecated in favor of react-android due to https://github.com/react/react-native/issues/35210.",
|
|
169
169
|
)
|
|
170
170
|
)
|
|
171
171
|
dependencySubstitution.add(
|
|
172
172
|
Triple(
|
|
173
173
|
"com.facebook.react:hermes-engine",
|
|
174
174
|
hermesVersionString,
|
|
175
|
-
"The hermes-engine artifact was deprecated in favor of hermes-android due to https://github.com/
|
|
175
|
+
"The hermes-engine artifact was deprecated in favor of hermes-android due to https://github.com/react/react-native/issues/35210.",
|
|
176
176
|
)
|
|
177
177
|
)
|
|
178
178
|
dependencySubstitution.add(
|