4

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?

LocoGris
  • 4,432
  • 3
  • 15
  • 30
Dheeraj Bari
  • 51
  • 1
  • 3
  • You can check this post : https://stackoverflow.com/questions/41663002/react-rctbridgemodule-h-file-not-found may be this help. – Anil Kumar Mar 20 '19 at 06:49
  • Possible duplicate of [\`React/RCTBridgeModule.h\` file not found](https://stackoverflow.com/questions/41663002/react-rctbridgemodule-h-file-not-found) – Gianfranco P. Jun 02 '19 at 07:54
  • were you able to find a solution? none of the links to the other "solutions" worked fo me. – lsimonetti Jun 13 '19 at 18:04
  • Didn't work for me either. @lsimonetti have you found a solution? – Yossi Apr 27 '20 at 07:23

1 Answers1

-2

Change the import react-native header lines:

 #import <React/RCTBridgeModule.h>
 #import <React/RCTLog.h>

To

 #import "RCTBridgeModule.h"
 #import "RCTLog.h"
Ugur
  • 750
  • 9
  • 20