I'm having a hard time using Flipper. I commented it out in Podfile while hermes_enabled => true. I ran pod install agin and build the app but it crashed upon launch.
When I set Hermes to false, it was build successfully.
Is there a way to disable Flipper & keep Hermes true and app builds successfully?
For react-native v0.70.1 I did the following
Remove
react-native-flipperfrompackage.json. Maybe I think you need to remove other packages that depend on the flipper. But I didn'tSet in ios/Podfile
:flipper_configuration => FlipperConfiguration.disabledinstead of
:flipper_configuration => FlipperConfiguration.enabledRemove
node_modulesRun
yarnornpm installClear old data:
5.1 Run
cd ios5.2 Run command
pod deintegrate && pod install5.3 Run
cd ..5.4 Run
cd android && ./gradlew clean5.5 Run
cd..Clearing old data is really important, I even restart my MacBook
I hope this helps you