upgrading reac-native from November 4th 2022 and build with firbase error #6681
Replies: 2 comments 2 replies
-
This appears to be some networking error. The error message clearly states: I click one of them and it works fine. That indicates to me that it is a networking issue in your network path from your build system to the maven repository, and that is not something we control here as module maintainers. The build works for me and your specific artifacts resolve fine for me |
Beta Was this translation helpful? Give feedback.
-
You can resolve this problem by forcing the React Native dependency to the version you expect with something like this implementation 'com.facebook.react:react-native:0.68.5!!' in your app's Gradle file. The !! is shorthand for restricting Gradle from upgrading if transitive dependencies depend on a newer version. configurations.all { |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
After upgrading from 0.68.0 to 0.68.5 I am now getting similar transform errors for react-native firebase dependencies when using react-native run-android.
build sucessful
gradle 7.3.3
`Error: Command failed: gradlew.bat app:installDebug -PreactNativeDevServerPort=8081
FAILURE: Build failed with an exception.
Execution failed for task ':app:checkDebugAarMetadata'.
` repositories {
google()
mavenCentral()
jcenter()
}
allprojects {
Beta Was this translation helpful? Give feedback.
All reactions