标签: ios react-native xcode10.2
我有一个React-native应用程序,只要我以模拟器为目标,当我从react-native run-ios运行该应用程序时以及从Xcode运行它时,它都可以成功构建。
但是,当我将目标设备更改为连接的Iphone时,Xcode失败,并出现一般错误
“ clang:错误:链接器命令失败,退出代码为1(使用-v查看调用)”
以模拟器为目标时构建良好,但如果以真实设备为目标则失败?
关于调试的错误或一般方向的任何想法?
答案 0 :(得分:0)
错误是does not contain bitcode. You must rebuild it with bitcode enabled (Xcode setting ENABLE_BITCODE), obtain an updated library from the vendor, or disable bitcode for this target. for architecture arm64
does not contain bitcode. You must rebuild it with bitcode enabled (Xcode setting ENABLE_BITCODE), obtain an updated library from the vendor, or disable bitcode for this target. for architecture arm64
如果您不使用位码,请不要使用它们。
Build Settings -> Build Options'Enable Bitcode'存在。
Build Settings -> Build Options
Enable Bitcode
请更改为“否”。