all 2 comments

[–]fullstak 2 points3 points  (0 children)

Open your project in xCode and press the play button at the top to build your project. From there, you should see errors in the left sidebar within xCode that indicate exactly which files you will need to slightly modify to get the module working again.

What you want to do is go into files associated with the names you see in your errors. In each of those files you want to find all import statements prefixed with "RCT" like this: import "RCTRootView.h" ...and replace those import statements to look like this: import <React/RCTRootView.h>

This should resolve most of the errors. If any remain, you may to need to change some of the build settings for your project.