skip to Main Content

I’ve created a new React Native project with npx react-native init AwesomeProject.

When I try to run ios app with npx react-native run-ios, build fails with the following error.

Undefined symbol: ___darwin_check_fd_set_overflow

I am using XCode 11.3.

After some research, I found that upgrading XCode version could solve the problem. But I cannot upgrade XCode version for some reason.

Can anyone help to fix this?

2

Answers


  1. Chosen as BEST ANSWER

    I could solve this issue by downgrading React Native version to 0.61.5.


  2. Try followings:

    • comment all flipper function in podfile
    • remove flipperInit in appDelegate
    • remove openSSl in podfile.lock
    • pod install,
    • clean project
    • run again

    I could solve with this.

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search