error Failed to build iOS project. We ran “xcodebuild” command but it exited with error code 65

前端 未结 13 1410
礼貌的吻别
礼貌的吻别 2020-11-29 23:58

I\'ve build a react-native application and suddenly I get this error message on my terminal during run of the command react-native run-ios. The same code work fine 10 minute

13条回答
  •  余生分开走
    2020-11-30 00:10

    After upgrading react-native, you may have stale dependencies. The steps below should fix it.

    1. cd ios
    2. delete Podfile.lock
    3. pod deintegrate && pod install
    4. Navigate back to package.json directory
    5. run react-native run-ios
    6. In Xcode you can build your project again too

    Hope this helps, I did this after upgrading to react-native 0.61

提交回复
热议问题