1

当我尝试使用 Xcode 12 Beta 4 构建一个项目来测试 iOS14 时,我得到了很多Undefined symbols for architecture x86_64. 每次我构建应用程序时,错误列表都会更改。原生库无法识别 React 基类。

我在 React-Native 存储库中打开了一个问题:https ://github.com/facebook/react-native/issues/29633

发生错误的示例项目:https ://github.com/igoriols/xcode12reactnativesample

4

2 回答 2

0

从关于这个问题的一个回复中,我添加了一个安装后脚本:

find ./node_modules -type f -name '*.podspec' | xargs sed -i.sed -e "s%'%\"%g"
find ./node_modules -type f -name '*.podspec' | xargs sed -i.sed -e 's%s.dependency[\t ]*"React"%s.dependency "React-Core"%g'

一切都完美无缺。

于 2020-10-15T19:09:46.550 回答
0

嘿,请在这里检查:https ://github.com/facebook/react-native/issues/29633#issuecomment-694187116

podspecs 需要更新。

于 2020-09-17T15:51:05.180 回答