接收无法在React Native项目中找到RNReanimated所依赖的FBReactNativeSpec规范

问题描述 投票:0回答:1

我正在将 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 反应本机信息

info

我已经尝试过:

  • pod install --repo-update

和:

  • rm podfile.lock
  • pod cache clean --all
  • cd ios && pod install && cd ..

有什么想法吗??

ios swift react-native podfile podfile-lock
1个回答
0
投票

对于遇到同样问题的每个人,请将react-native-reanimated库更新到最新版本(在我的例子中为3.14.0)。 然后运行这个命令:

 pod install 

就是这样。

© www.soinside.com 2019 - 2024. All rights reserved.