We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4009020 commit a6a183aCopy full SHA for a6a183a
react.gradle
@@ -348,3 +348,17 @@ afterEvaluate {
348
}
349
350
351
+
352
+// Patch needed for https://github.com/facebook/react-native/issues/35210
353
+// This is a patch to short-circuit the "+" dependencies inside the
354
+// users' app/build.gradle file and the various .gradle files of libraries.
355
+// As using plain "+" dependencies causes Gradle to always download the latest,
356
+// this logic forces Gradle to use latest release in the minor series.
357
+project.rootProject.allprojects {
358
+ configurations.all {
359
+ resolutionStrategy {
360
+ force "com.facebook.react:react-native:0.64.+"
361
+ force "com.facebook.react:hermes-engine:0.64.+"
362
+ }
363
364
+}
0 commit comments