react-native-begin-background-task icon indicating copy to clipboard operation
react-native-begin-background-task copied to clipboard

React/RCTDefines.h file not found

Open elleryfamilia opened this issue 3 years ago • 2 comments

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.

elleryfamilia avatar Jun 24 '21 16:06 elleryfamilia

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

elleryfamilia avatar Jun 28 '21 20:06 elleryfamilia

I had the same issue and https://github.com/joltup/rn-fetch-blob/issues/461#issuecomment-553355501 helped me

december1990 avatar Nov 30 '21 18:11 december1990