我正在将 React Native 版本从 0.70.6 升级到 0.74.3。
当我尝试在 iOS 文件夹中运行 pod install 时。我收到此错误:
[!] Unable to find a specification for `FBReactNativeSpec` depended upon by `RNReanimated`
You have either:
* mistyped the name or version.
* not added the source repo that hosts the Podspec to your Podfile.
npx 反应本机信息
我已经尝试过:
pod install --repo-update
和:
rm podfile.lock
pod cache clean --all
cd ios && pod install && cd ..
有什么想法吗??
对于遇到同样问题的每个人,请将react-native-reanimated库更新到最新版本(在我的例子中为3.14.0)。 然后运行这个命令:
pod install
就是这样。