1. 程式人生 > >RN專案報錯“RCTBundleURLProvider.h” file not found

RN專案報錯“RCTBundleURLProvider.h” file not found

“RCTBundleURLProvider.h” file not found

從網上下載別人的ReactNative專案,開啟iOS專案的時候,xcode會報錯,提示:“RCTBundleURLProvider.h” file not found

解決方法:

  1. 開啟Mac裡面的終端,進入專案所在的資料夾目錄;

  2. 把專案裡面的 node_modules 資料夾刪除掉,然後執行 npm install 命令

  3. npm install安裝完成後, 執行react-native upgrade命令

最後重新開啟Xcode,clean一下,應該就沒有問題了,我的就是這麼解決的。