CocoaPods generates invalid project file (header not found)

旧街凉风 提交于 2019-12-05 03:31:30
Bishal Ghimire

This solved my Problem

In HEADER_SEARCH_PATHS Under your Project Build Setting add the $(inherited)

Also DO this for all TAGETS

Change Arcgitectures to Standard armv7

https://stackoverflow.com/a/12142790/1294448

For me, the problem was with Other Linker Flags and Runpath Search Paths, which weren't inheriting the settings defined on xcconfig. The following adjustments solved my problem:

Other Linker Flags:

$(inherited)

Runpath Search Paths:

$(inherited)
@executable_path/Frameworks
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!