Reputation: 6760
When I try to Archive my Xcode project, it can no longer find the .h files from the subproject in the same workspace. It works fine otherwise.
Any ideas on how to fix it?
Upvotes: 1
Views: 145
Reputation: 6760
It turns out I had created a new build configuration on the main project and that same build configuration didn't exist in the subproject, so when it went to archive it couldn't find the .h files that had been copied over.
I added the same build configuration to the subproject and it archived just fine.
Upvotes: 1