Problems finding the Grabkit header paths

I am developing an iOS 6 application for iPad and I am using a repository called Grabkit, which I have to add to my project as a sub-project / sub-project. To make it work, I have to add the following code in the header search path:

$ (TARGET_BUILD_DIR) / enable / GrabKitLib

So it looks like this: enter image description here

This works well in the simulator and even when I test it on my iPad, but the problem is that when I want to archive it to send it to the App Store, I get the error message: “Grabkit.h file not found” I didn’t getting this error when testing an application, so this is weird. What could be the problem? What can I do? Thanks

+4
source share
1 answer

I $(BUILD_ROOT)/../IntermediateBuildFilesPath/UninstalledProducts/include/GrabKitLib it by adding $(BUILD_ROOT)/../IntermediateBuildFilesPath/UninstalledProducts/include/GrabKitLib in the user header search path

 skip install = NO 
0
source

Source: https://habr.com/ru/post/1491467/


All Articles