mybigday / react-native-media-meta

Get media file metadata in your React Native app
MIT License
83 stars 46 forks source link

'React/RCTDefines.h' file not found #20

Open NirpE opened 6 years ago

NirpE commented 6 years ago

Getting following error when trying to build app with XCode:

'React/RCTDefines.h' file not found

On Android library works and compiles normally.

Any idea if this is fixable with my project itself?

Seemapadiya commented 4 years ago

Please add this line of code in /node_modules/react-native/React/Base/RCTBridgeModule.h

if __has_include("RCTDefines.h")

import "RCTDefines.h"

else

import <React/RCTDefines.h>

endif

For your reference - https://github.com/facebook/react-native/issues/26754

matthewadel commented 4 years ago

Please add this line of code in /node_modules/react-native/React/Base/RCTBridgeModule.h

if __has_include("RCTDefines.h")

import "RCTDefines.h"

else

import <React/RCTDefines.h>

endif

For your reference - facebook/react-native#26754

remove

import <React/RCTDefines.h>

from the file and replace it with the above code