react-native-begin-background-task
react-native-begin-background-task copied to clipboard
React/RCTDefines.h file not found
After linking, I'm getting the following build error: React/RCTDefines.h file not found
Linking did not add anything to my podfile so not much for me to tweak. Any help would be appreciated.
Modifying RCTBridgeModule to the below seems to have fixed it for me
#if __has_include("RCTDefines.h")
#import "RCTDefines.h"
#else
#import <React/RCTDefines.h>
#endif
I had the same issue and https://github.com/joltup/rn-fetch-blob/issues/461#issuecomment-553355501 helped me