A.com
A.com

Reputation: 1645

Error: xcodebuild process exited with code 65 - August 2016

I installed everytying and ran the following steps:

react-native init AwesomeProject
cd AwesomeProject
react-native run-ios

But I'm getting a BUILD FAIL and the following error:

Error: xcodebuild process exited with code 65
    at ChildProcess.<anonymous> (runIOS.js:102:14)
    at emitTwo (events.js:87:13)
    at ChildProcess.emit (events.js:172:7)
    at maybeClose (internal/child_process.js:818:16)
    at Process.ChildProcess._handle.onexit (internal/child_process.js:211:5)

Any idea what is going on? I followed the exact steps from the docs: https://facebook.github.io/react-native/docs/getting-started.html#content

Upvotes: 4

Views: 12579

Answers (4)

Aliking66
Aliking66

Reputation: 31

i had the same issue mac os el capitan xcode 7.3.1

at this time [email protected] was release but it didn't work for me

i installed react-native with older version and used this command and made a new project

react-native init --version="[email protected]" myproject

now it's okay and is working perfect

Upvotes: 0

Hadnazzar
Hadnazzar

Reputation: 1616

Here is the solution

first delete ios/build folder then run

sudo react-native run-ios

Upvotes: 6

mklb
mklb

Reputation: 1295

For people not wanting to download and install XCode again:

  1. After updating to XCode 8, open your project and set your signing identity right again
  2. Run the project, maybe it will work again. If not, you will most likely get and error from RCTWebSocket
  3. Double click on the RCTWebSocket project in your navigator and remove the flags under build settings > custom compiler flags. Details here: https://github.com/facebook/react-native/issues/8584#issuecomment-236366222

Upvotes: 0

A.com
A.com

Reputation: 1645

SOLVED: Always be sure to update your Xcode folks!


Protip: And don't do it from the apple store (but always do it from an official apple website of course)

tip from: http://ericasadun.com/2016/03/22/xcode-upgrades-lessons-learned/

official apple download page: https://developer.apple.com/download/more/

Upvotes: 0

Related Questions