React/RCTBridgeDelegate.h’ file not found

The issue is related to cocoapods dependency manager. Do the following to fix this:

  1. Open the terminal and go to your project ios directory
  2. Type in pod init (If it doesn’t exist) and then pod install
  3. Open the workspace project and delete the build from ios folder
  4. Run react-native run-ios from terminal.

It should work now.

Leave a Comment