当我试图用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
嘿,请在这里查看:https://github.com/facebook/react-native/issues/29633#issuecomment-69418716
podspec需要更新。
从关于这个问题的一个响应中,我添加了一个安装后脚本,其中包含:
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'
一切都完美构建。