I am trying to create a zip file that contains an iOS XCode project, that anyone with XCode will be able to unzip it , open the project, build and run it. this project uses facebook SDK, and It's included it in the project's zip.
the problem is that when I extract the zip and run, I always get "facebook.h is missing" complile error. if I remove the facebook framework and put it again (like in this answer: How to make Xcode find file FacebookSDK.h?) , It solves the problem, But I want to make it easy to the users that download my app's project so they wouldn't need to do that.
actually, I don't believe there's something wrong in the zipping process, I think it's something to do with the project's settings.
Does anyone know how to fix this?