“RCTBundleURLProvider.h” file not found - AppDelegate.m

后端 未结 26 1449
遇见更好的自我
遇见更好的自我 2020-12-04 06:29

I am trying to run my React Native app in XCode and I keep getting this error. I cannot figure out how to resolve the issue. Any suggestions?

Screen Shot of Error in

26条回答
  •  孤城傲影
    2020-12-04 07:05

    I faced same issue .then i have deleted node .try to use these steps

    1. Delete the node_modules folder - rm -rf node_modules && npm install
    2. Reset packager cache - rm -fr $TMPDIR/react-* or node_modules/react-native/packager/packager.sh --reset-cache
    3. Clear watchman watches - watchman watch-del-all

    then make build and see

提交回复
热议问题