react-native-navigation V7 出错 library not found for -lReactNativeNavigation
问题描述
最近升级了项目的 React Native 以及相关第三方插件。
{
"react": "16.8.6",
"react-native": "0.60.0",
"react-native-navigation": "^3.2.0",
}
到
{
"react": "17.0.1",
"react-native": "0.64.1",
"react-native-navigation": "^7.14.0",
}
最后在 Xcode 的 Realse 模式运行项目,但是错误了,错误如下。
ld: library not found for -lReactNativeNavigation
但是在 Debug 模式没有问题。
解决方法
设置 iOS Development Target 最小为 iOS 11.0。
重新编译。