No podspec found for `React-Core` in `../node_modules/react-native/React`

前端 未结 6 2346
说谎
说谎 2021-02-19 01:32

I\'m using React Native. I get this issue when I try to upload pods. I\'ve successfully installed node_modules, but I\'m getting this problem. What is the problem? If we delete

6条回答
  •  無奈伤痛
    2021-02-19 02:08

    Podspec was moved from

    ../node_modules/react-native/React
    

    to

    ../node_modules/react-native
    

    So update the line

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

    to

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

    Please check it here depend on your react-native version https://react-native-community.github.io/upgrade-helper/?from=0.60.6&to=0.61.4

提交回复
热议问题