We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 54e6662 commit 59407a4Copy full SHA for 59407a4
react.gradle
@@ -466,3 +466,17 @@ afterEvaluate {
466
}
467
468
469
+
470
+// Patch needed for https://github.com/facebook/react-native/issues/35210
471
+// This is a patch to short-circuit the "+" dependencies inside the
472
+// users' app/build.gradle file and the various .gradle files of libraries.
473
+// As using plain "+" dependencies causes Gradle to always download the latest,
474
+// this logic forces Gradle to use latest release in the minor series.
475
+project.rootProject.allprojects {
476
+ configurations.all {
477
+ resolutionStrategy {
478
+ force "com.facebook.react:react-native:0.70.+"
479
+ force "com.facebook.react:hermes-engine:0.70.+"
480
+ }
481
482
+}
0 commit comments