Question: Does current ReactNativeFlipperExample app runs on simulator on M1 macs?
#3,150 创建于 2021年12月10日
描述
Been banging my head after getting M1 machine. My goal is have a working setup with flipper running on simulator outside of Rosetta on my main project. No success so far, (made it run on device with no changes), but having issues with simulator, so I decided to check against a simpler project.
So my current steps so far were:
- Clone the react-native/ReactNativeFlipperExample app
- yarn install && cd ios && pod install
- Attempt to debug build to iPhone 13 simulator.
Currently on my machine it fails with
I'm not sure how it's even supposed to work with excluded architectures, since project.pbxproj file excludes arm64 configuration on main, which gets overridden by react_native_pods postinstall hacks workarounds.
Adding bridging header (how I deduced, mainly for ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES) does not help a bit. Then it goes into territory on more attempts to make stuff run, overriding excluded archs again, which kinda ruins the point in trying to run an example project.
I'm interested in is that some problems in my configuration, or I should stop trying and it's not running on M1 machines in current state?
xed version 13.1
Thank you for you time!