react-native-cloud-fs
react-native-cloud-fs copied to clipboard
Ios: Cannot find protocol declaration for 'RCTBridgeModule';
react-native: 0.59.4 xcode: Version 10.2.1 (10E1001)
I've done all installation as written here. On build, I'm getting following errors:
Cannot find protocol declaration for 'RCTBridgeModule'; did you mean 'RCTBridgeMethod'?
react-native: 0.59.1 xcode: Version 10.2.1 (10E1001)
same issue would happily contribute but i'm not that good with objective c
Any solution for this ? same issue here..
Any solution for this ? same issue here..
Hi @mrded where you able to fix this.
I'm afraid not yet
I've fixed it on my end tho
@mosoakinyemi it would be interesting to know how?
Sorry, replied you from my work account.
I solved it by searching for all instances of import "RCTBridgeModule.h
, then replacing it with
#if __has_include(<React/RCTBridgeModule.h>)
#import <React/RCTBridgeModule.h>
else
#import "RCTBridgeModule.h"
#endif
Also, I changed my build system
to New Build System
PRs welcome if you have a fix