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

前端 未结 13 1397
礼貌的吻别
礼貌的吻别 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条回答
  •  慢半拍i
    慢半拍i (楼主)
    2020-11-30 00:29

    For me it caused by installing react-native-vector-icons and linking by running the react-native link react-native-vector-icons command.

    I just unlinked the react-native-vector-icons by following commands

    1. react-native unlink react-native-vector-icons
    2. cd ios
    3. pod install
    4. cd ..
    5. react-native run-ios

    As I already installed an other icon library.

提交回复
热议问题