-
Notifications
You must be signed in to change notification settings - Fork 24.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
com.facebook.react:flipper-integration which is missing the version number on v0.73.0 #41876
Comments
|
The reproducer you linked (the official template) is building correctly: The missing version number is intentional as it will be set for you by the framework so you don't have to update it every time |
This has happened to me today too. It seems that Incidentally manually putting |
This is intentional as Flipper integration has been removed from React Native. |
How will this affect users trying to stay on 0.73.7 to continue use Flipper for a while? I get the following now after upgrade, tried deleting cache etc.
EDIT: I had react-native-gradle-plugin / @react-native/gradle-plugin in my package.json, from the RN blogposts from renaming. This should be removed from package.json as we shouldn't use Gradle as direct dependency like this. |
Anyone can solved this issue? |
I am currently facing same issue and will only comment it out in the mean time as a solution |
What can we do to avoid this error at build step ? even by commenting the line in gradle.build, it's not working |
I had the same issue that started after upgrading our expo sdk. Deleting the android directory then regenerating it solved the issue. |
Obrigado mano, aqui só funcionou com a sua dica, após excluir a pasta android funcionou perfeitamente. Obrigado |
Can confirm this works with upgrading from expo v50 to v51 Thank you 🙏 |
for me it's caused by @types/react-native-htmlview, I removed this one then I can build normally |
Old Version
0.72.6
New Version
0.73.0
Description
When building with yarn the project fails to build the android app due to the new com.facebook.react:flipper-integration
which is missing the version number
Steps to reproduce
yarn android
fails
[Could not determine the dependencies of task ':app:compileDebugJavaWithJavac']
Could not find com.facebook.react:flipper-integration:.
Affected Platforms
Runtime - Android, Build - MacOS
Output of
npx react-native info
Stacktrace or Logs
Reproducer
https://github.com/react-native-community/reproducer-react-native
Screenshots and Videos
A fix is to add the version number to the android/app/build.gradle file
something like this
Line 110
implementation("com.facebook.react:flipper-integration:0.73.0")
The text was updated successfully, but these errors were encountered: