react-native-pinch icon indicating copy to clipboard operation
react-native-pinch copied to clipboard

.xcodeproj cannot be opened because the project file cannot be parsed

Open DazChong opened this issue 7 years ago • 3 comments

iOS HEADER_SEARCH_PATHS in project.pbxproj incompatible with react-native-navigation.

Before:

HEADER_SEARCH_PATHS = "$(SRCROOT)/../node_modules/react-native-navigation/ios/**""$(SRCROOT)/../node_modules/react-native-pinch/RNPinch";

Fix:

HEADER_SEARCH_PATHS = ("$(SRCROOT)/../node_modules/react-native-navigation/ios/**","$(SRCROOT)/../node_modules/react-native-pinch/RNPinch");

DazChong avatar Jun 23 '17 09:06 DazChong