在`../ node_modules / react-native`中找不到`React-Core`的podspec。

时间:2020-02-19 12:33:07

标签: react-native cocoapods pod

我遇到一个错误:

watch

这是我的Podfile:

public

1 个答案:

答案 0 :(得分:1)

根据upgrade tool report,如果您的ReactNative版本在0.60.6 - 0.61.1之间。 React-Core.podspec已移出

pod 'React-Core', :path => '../node_modules/react-native/React'

pod 'React-Core', :path => '../node_modules/react-native' 

但是对于以前的版本,请将React-Core中的Podfile路径更改为

pod 'React-Core', :path => '../node_modules/react-native/React'

为了确认这一点,相对于Podfile,检查路径../node_modules/react-native/React/React-Core.podspec确实存在。

希望这对您有所帮助。放心怀疑。