[!] No podspec found for 'react-native' in ./node_modules/react-native报错解决

报错原因是因为pod install时没有找到对应react-native目录下的.podspec文件

导致错误有两种可能:

  1. node_mudules/react-native目录下有.podspec文件,但和Podfile依赖文件里定义的名字不符
  2. node_modules/react-native目录下没有.podspec文件

对于第一种可能

的react-native目录下的.podspec文件名为RNSVG

而在Podfile依赖文件里:

改为:

搞定:

[!] No podspec found for 'react-native' in ./node_modules/react-native报错解决_第1张图片

 

对于第二种可能

  1. 自己在react-native目录下新建.podspec文件
  2. 然后根据其他目录下的.podpec文件内容进行添加或者参考下面的内容

[!] No podspec found for 'react-native' in ./node_modules/react-native报错解决_第2张图片

你可能感兴趣的:(iOS)