Skip to content

Commit a3442d3

Browse files
authored
Merge pull request #161 from FormidableLabs/bugfix/header-search-paths
Fix recursive header expansion error
2 parents e7402ae + 7e30ded commit a3442d3

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

ios/RNAppAuth.xcodeproj/project.pbxproj

+4-2
Original file line numberDiff line numberDiff line change
@@ -210,7 +210,8 @@
210210
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include,
211211
"$(SRCROOT)/../../../React/**",
212212
"$(SRCROOT)/../../react-native/React/**",
213-
"$(SRCROOT)/../../../ios/**",
213+
"$(SRCROOT)/../../../ios/Pods/AppAuth/**",
214+
"$(SRCROOT)/../../../ios/Pods/Headers/**",
214215
);
215216
LIBRARY_SEARCH_PATHS = "$(inherited)";
216217
OTHER_LDFLAGS = "-ObjC";
@@ -227,7 +228,8 @@
227228
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include,
228229
"$(SRCROOT)/../../../React/**",
229230
"$(SRCROOT)/../../react-native/React/**",
230-
"$(SRCROOT)/../../../ios/**",
231+
"$(SRCROOT)/../../../ios/Pods/AppAuth/**",
232+
"$(SRCROOT)/../../../ios/Pods/Headers/**",
231233
);
232234
LIBRARY_SEARCH_PATHS = "$(inherited)";
233235
OTHER_LDFLAGS = "-ObjC";

0 commit comments

Comments
 (0)