以真实设备为目标时,无法获得本机内置IOS的响应

时间:2019-06-21 01:55:49

标签: ios react-native xcode10.2

我有一个React-native应用程序,只要我以模拟器为目标,当我从react-native run-ios运行该应用程序时以及从Xcode运行它时,它都可以成功构建。

但是,当我将目标设备更改为连接的Iphone时,Xcode失败,并出现一般错误

“ clang:错误:链接器命令失败,退出代码为1(使用-v查看调用)”

以模拟器为目标时构建良好,但如果以真实设备为目标则失败?

关于调试的错误或一般方向的任何想法?

1 个答案:

答案 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

如果您不使用位码,请不要使用它们。

Build Settings -> Build Options'Enable Bitcode'存在。

请更改为“否”。

enter image description here