skip to Main Content

After updating the RN version from 0.70.6 to 0.71.4 ios pod install working, but the app doesn’t build and gives an error.
‘RCTAppDelegate.h’ file not found
any ideas??

I have tried all steps in react-native-update-helper(android works)

Updated

I don’t have AppDelegate.mm so i did all changes in AppDelegate.m

2

Answers


  1. Delete the node_modules folder, along with package-lock.json

    then run npm cache clean –force

    and the reinstall using npm install

    if you are using yard, basicly the same thing, rm yarn.lock, yarn cache clean and then yarn install

    Login or Signup to reply.
  2. Try to remove Pods and build folders and Podfile.lock file, then re-install pods.

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search