Getting this error while building a react-native iOS app on xcode.
Started getting this error after npm install and rpm linking react-native-fs library. But
QUICK FIX (not the best)
Change the import react-native header lines:
#import #import
To:
#import "RCTBridgeModule.h" #import "RCTLog.h"
Here is an example of changes I had to make for the library I was trying to use: Closes #46 - 'RCTBridgeModule.h' file not found.