react-native-exif icon indicating copy to clipboard operation
react-native-exif copied to clipboard

Change import React/RCTBridgeModule to React/Base/RCTBridgeModule

Open ghost opened this issue 6 years ago • 1 comments

When trying to use this project on iOS I get file not found at:

import <React/RCTBridgeModule.h>

In react-native-exif/ios/ReactNativeExif/ReactNativeExif.h we have an import:

#import <React/RCTBridgeModule.h>

But in recent versions of React Native the included file resides in /react-native/React/Base/RCTBridgeModule.h

I guess the fix would be to change from #import <React/RCTBridgeModule.h> to #import <React/Base/RCTBridgeModule.h>

ghost avatar Jun 04 '18 13:06 ghost

IOs module react-native documentation use "React/RCTBridgeModule.h" : https://facebook.github.io/react-native/docs/native-modules-ios.html

image

I think the problem must be another