React Native ios build failed on react-native run-ios React Native ios build failed on react-native run-ios xcode xcode

React Native ios build failed on react-native run-ios


Xcode 8.2 still occur same error. Three lines bellow fixed it for me :)Downgrade react(16.0.0-alpha.12 -> 16.0.0-alpha.6) & react-native(0.45.0 -> 0.44.0)
rm -rf node_modules/react
npm i react@16.0.0-alpha.6 -S
npm i react-native@0.44.0 -S
Then run react-native run-ios


If it's your first project, you may have the same problem than me:do NOT use space in your project path! 🎉 😄


  1. If your xcode is open, close it
  2. Remove DrivedData
  3. Update your pod files using pod update command
  4. Run npx react-native ios command

its worked for me i hope work for you too