我已经在react-native-fetch-blob上安装了react-本机version 0.60.5.While,我运行了pod install,错误出现在

请指导我如何解决这个问题
发布于 2020-02-08 19:51:17
到./node-module/react-native-fetch-blob/react-native-fetch-blob.podspec & change
s.dependency 'React/Core'至
s.dependency 'React-Core'希望这能帮到你。有疑问就放心吧。
发布于 2020-02-08 19:51:08
您可以将其用于Reactinative0.60和更高版本的https://github.com/joltup/rn-fetch-blob。
发布于 2022-10-28 12:21:26
使用以下命令将依赖关系React/Core更改为React Core
grep -rl "s.dependency 'React/Core'" node_modules/ | xargs sed -i '' 's=React/Core=React-Core=g'或
您可以转到路径./node-module/react-native-fetch-blob/react-native-fetch-blob.podspec的节点模块,并将React/Core更改为React-Core。
https://stackoverflow.com/questions/60130438
复制相似问题