I am unable to build react native ios build for real devices and simiulator. Facing following issue:
"'React/RCTBridgeModule.h ' file not found".
Any solutions?
I am unable to build react native ios build for real devices and simiulator. Facing following issue:
"'React/RCTBridgeModule.h ' file not found".
Any solutions?
Change the import react-native header lines:
#import <React/RCTBridgeModule.h>
#import <React/RCTLog.h>
To
#import "RCTBridgeModule.h"
#import "RCTLog.h"