ExpoKit?ExpoKitFor me, when this build error occurs it is not in my project but the RNAppAuth project. I can fix this by going and adding $(SRCROOT)/../../../ios/Carthage/Build/iOS/AppAuth.framework as a recursive header search path to the project.
If you modify the line found here: https://github.com/FormidableLabs/react-native-app-auth/blob/master/ios/RNAppAuth.xcodeproj/project.pbxproj#L211 to include this, then it works for me (albeit with a bug in the AppAuth-iOS, but that is a separate issue)
HEADER_SEARCH_PATHS = (
"$(inherited)",
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include,
"$(SRCROOT)/../../../React/**",
"$(SRCROOT)/../../react-native/React/**",
"$(SRCROOT)/../../../ios/Pods/AppAuth/**",
"$(SRCROOT)/../../../ios/Pods/Headers/**",
"$(SRCROOT)/../../../ios/Carthage/Build/iOS/AppAuth.framework/**"
);
Thank you for the workaround, waiting for fix
For the info, this bug is not reproducible on 4.0.0, even though it has not that line mentioned above
hey there, i am struggling with this issue ! @erichulser did you solve it ?
I'm able to reproduce this bug on 4.4.0 and 4.0.0 on react-native == 0.59.0 while using an installation with react-native link.
Oops, turns out I had not correctly finished the setup instructions. Got this working today.
Hi @powersjcb, what did you miss? I'm getting this problem too
Most helpful comment
hey there, i am struggling with this issue ! @erichulser did you solve it ?