Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

React-native -run-ios error Failed to build iOS project. We ran "xcodebuild" command but it exited with error code 65

Tags:

react-native

good time. run ios error Failed

run code react-native run-ios

error Failed to build iOS project. We ran "xcodebuild" command but it exited with error code 65. To debug build logs further, consider building your app with Xcode.app, by opening reactapp.xcodeproj

** BUILD FAILED **enter image description here

like image 710
developerjavad Avatar asked Apr 05 '19 20:04

developerjavad


2 Answers

I've got the same error when run

$ react-native run-ios

My workaround steps:

  1. open project by Xcode and choose the signature information as the attached image.
  2. clear build folder: 'Your Project'/ios/build
  3. re-run:

$ react-native run-ios

Hope this help.

like image 131
Quang Vu Avatar answered Nov 19 '22 00:11

Quang Vu


That's because there is a new version of Flipper and React Native might not come with the right one so best is to go in your podfile and add this use_flipper!({ 'Flipper' => '0.74.0' }) then run pod install

like image 3
Raj Shah Avatar answered Nov 18 '22 23:11

Raj Shah