아래와 같은 에러가 떳을 때 해결법.
error Failed to build iOS project.
We ran "xcodebuild" command but it exited with error code 65.
프로젝트 최상위 폴더
- ios
내에 있는 Podfile
수정.use_flipper!()
삭제(주석처리)...
...
# Enables Flipper.
#
# Note that if you have use_frameworks! enabled, Flipper will not work and
# you should disable the next line.
# use_flipper!()
post_install do |installer|
react_native_post_install(installer)
end
end
pod install
-> arch -x86_64 pod install
참고
https://stackoverflow.com/questions/64901180/running-cocoapods-on-apple-silicon-m1/65334677#65334677