- 해당 에러와 관련된 flipper 이슈 : https://github.com/facebook/flipper/issues/834
- 동일한 에러를 겪었던 사람 블로그 : https://success206.tistory.com/150
Podfile 내용 수정
ios프로젝트의
Podfile
파일 하단의 use_flipper!
부분을 아래와 같이 수정하자.use_flipper!({ 'Flipper-Folly' => '2.5.3', 'Flipper' => '0.87.0', 'Flipper-RSocket' => '1.3.1' }) post_install do |installer| flipper_post_install(installer) end
Podfile 업데이트 반영
Podfile을 업데이트 했으니, 이를 반영시키기 위해 아래 명령어를 실행하자.
$ pod install --repo-update
프로젝트 실행
이제 다시 React-native 프로젝트를 빌드해보면 잘 된다.
$ npx react-native run-ios