Skip to content

Commit

Permalink
Force dependencies resolution to minor series for 0.64
Browse files Browse the repository at this point in the history
  • Loading branch information
kelset committed Nov 6, 2022
1 parent 4009020 commit a6a183a
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions react.gradle
Expand Up @@ -348,3 +348,17 @@ afterEvaluate {
}
}
}

// Patch needed for https://github.com/facebook/react-native/issues/35210
// This is a patch to short-circuit the "+" dependencies inside the
// users' app/build.gradle file and the various .gradle files of libraries.
// As using plain "+" dependencies causes Gradle to always download the latest,
// this logic forces Gradle to use latest release in the minor series.
project.rootProject.allprojects {
configurations.all {
resolutionStrategy {
force "com.facebook.react:react-native:0.64.+"
force "com.facebook.react:hermes-engine:0.64.+"
}
}
}

0 comments on commit a6a183a

Please sign in to comment.