We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
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:
react-native-exif/ios/ReactNativeExif/ReactNativeExif.h
#import <React/RCTBridgeModule.h>
But in recent versions of React Native the included file resides in /react-native/React/Base/RCTBridgeModule.h
/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>
#import <React/Base/RCTBridgeModule.h>
The text was updated successfully, but these errors were encountered:
IOs module react-native documentation use "React/RCTBridgeModule.h" : https://facebook.github.io/react-native/docs/native-modules-ios.html
I think the problem must be another
Sorry, something went wrong.
No branches or pull requests
When trying to use this project on iOS I get file not found at:
In
react-native-exif/ios/ReactNativeExif/ReactNativeExif.h
we have an import: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>
The text was updated successfully, but these errors were encountered: