Facebook released an update yesterday for flipper with v74 and added support for arm64 devices.
so Flipper v74 should have a fix for arm64 devices
Setup:
Using the latest Flipper SDK#
By default React Native might ship with an outdated Flipper SDK. To make sure you are using the latest version, determine the latest released version of Flipper by running npm info flipper.
-
Android:
Bump the
FLIPPER_VERSIONvariable inandroid/gradle.properties, for example:FLIPPER_VERSION=0.74.0. Run./gradlew cleanin the android directory. -
iOS:
Call use_flipper with a specific version in
iOS/Podfile, for example:use_flipper!({ 'Flipper' => '0.74.0' }).
Run pod install in the ios directory.
we can see how to setup flipper for react-native here: https://fbflipper.com/docs/getting-started/react-native
This link Solved my issue..Update of pods after changing Flipper Version..refer this
with this version I fixed the 'event2/event-config.h' file not found issue.
Update
Xcode version is now 12.5 and needs a new Flipper version to be installed.
Flipper v95 is now released.
here how to add it:
use_flipper!({ 'Flipper' => '0.95.0' })