初学react native问题总结

1. “RCTBundleURLProvider.h” file not found

ReactNative项目,打开iOS项目的时候,xcode会报错,提示:“RCTBundleURLProvider.h” file not found

解决方法:

打开Mac里面的终端,进入项目所在的文件夹目录;

把项目里面的 node_modules 文件夹删除掉,然后执行 npm install 命令

npm install安装完成后, 执行react-native upgrade命令

最后重新打开Xcode,clean一下,应该就没有问题了。

你可能感兴趣的:(初学react native问题总结)