Upvote:1

enter image description here

I think you have the react missing thing, here's what I did.

  1. Check that I have React in my pods (pod 'React', :path => '../node_modules/react-native/'). If not, add it.
  2. Uninstall reinstall pods (pod deintegrate && pod clean && pod install in the ios folder, I believe the pod deintegrate command needs to be downloaded and isn't available by default)
  3. Go to scheme -> edit scheme -> build, delete the React(missing) using the 'minus' button. Click on 'add' or a 'plus' button. Find React (should be in the Pods category) and add it. Finally, make sure all boxes are ticked for React, and place it at the top of the list.

Here you go, I hope this helps. If however you do not have the React(missing), I have no idea how to solve this since i've never had this problem :/

More Answer related to the Same Query

Upvote:0

I have previously fixed this issue with this solution, which actually caused by React Native breaking changes (React.xcodeproj is deprecated).

Since the details answer is in the linked post, I do not re-post the entire solution here again but just a TLDR for you.


TLDR;

You need to add .podspec to podfile for whichever 3rd party/custom library that complain unable to find React/{whatever.h}


Credit Goes to: stackoverflow.com

Related question with same questions but different answers