From e5ee0b7acc85fadd797723c2ce9231a3380f5f81 Mon Sep 17 00:00:00 2001 From: slycoder Date: Wed, 31 Jan 2018 18:28:39 -0800 Subject: [PATCH] Add Pod paths to header search paths By adding the pod paths, we ensure that if dependencies (namely React) are installed *only* via Pod and not via direct linking in the project. --- ios/RNFIRMessaging.xcodeproj/project.pbxproj | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ios/RNFIRMessaging.xcodeproj/project.pbxproj b/ios/RNFIRMessaging.xcodeproj/project.pbxproj index f662aef..855a012 100644 --- a/ios/RNFIRMessaging.xcodeproj/project.pbxproj +++ b/ios/RNFIRMessaging.xcodeproj/project.pbxproj @@ -230,6 +230,7 @@ "$(PROJECT_DIR)/../../../ios/Frameworks/**", "$(SRCROOT)/../../../node_modules/react-native-firestack/ios/**", "$(PROJECT_DIR)/../../../ios/Pods/Firebase/**", + "$(PROJECT_DIR)/../../../ios/Pods/Headers/Public/**", ); LIBRARY_SEARCH_PATHS = "$(inherited)"; OTHER_LDFLAGS = "-ObjC"; @@ -257,6 +258,7 @@ "$(PROJECT_DIR)/../../../ios/Frameworks/**", "$(SRCROOT)/../../../node_modules/react-native-firestack/ios/**", "$(PROJECT_DIR)/../../../ios/Pods/Firebase/**", + "$(PROJECT_DIR)/../../../ios/Pods/Headers/Public/**", ); LIBRARY_SEARCH_PATHS = "$(inherited)"; OTHER_LDFLAGS = "-ObjC"; -- 2.26.2