I using expo version of react native 0.48.4 (21.0.2 expo) and react-native-in-app-utils@5.6.0. When I link using react-native install react-native-in-app-utils.
Till now I have tried:
- Manually Linking
- Deleting node_modules and installing again
- Including react to the build scheme with parallelized build unchecked
- Tried to add react to search header path
But still, the stubborn error does not go away.
My pod definition for react is like so:
pod 'React',
:path => "../node_modules/react-native",
:subspecs => [
"Core",
"BatchedBridge",
"ART",
"RCTActionSheet",
"RCTAnimation",
"RCTCameraRoll",
"RCTGeolocation",
"RCTImage",
"RCTNetwork",
"RCTText",
"RCTVibration",
"RCTWebSocket",
"DevSupport",
"CxxBridge"
]
Can some help me?