We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b55518c commit edcb3caCopy full SHA for edcb3ca
react.gradle
@@ -440,3 +440,17 @@ afterEvaluate {
440
}
441
442
443
+
444
+// Patch needed for https://github.com/facebook/react-native/issues/35210
445
+// This is a patch to short-circuit the "+" dependencies inside the
446
+// users' app/build.gradle file and the various .gradle files of libraries.
447
+// As using plain "+" dependencies causes Gradle to always download the latest,
448
+// this logic forces Gradle to use latest release in the minor series.
449
+project.rootProject.allprojects {
450
+ configurations.all {
451
+ resolutionStrategy {
452
+ force "com.facebook.react:react-native:0.68.+"
453
+ force "com.facebook.react:hermes-engine:0.68.+"
454
+ }
455
456
+}
0 commit comments