Bablu Joshi
Bablu Joshi

Reputation: 389

lipo can't open input file (no such file or directory) xcode

i am getting this error when i am trying to make .framework file using the instruction in http://jaym2503.blogspot.in/2012/09/how-to-create-custom-ios-framework.html..

Did anyone encountered this before? ..

Upvotes: 2

Views: 3602

Answers (1)

Prajwal Udupa
Prajwal Udupa

Reputation: 860

make sure you have done this. Replace "FW_NAME" with your Framework name, In my case "iOSBundle"

The reason other than you are getting this is the source code dependency problems. To analyze this just add 2 files ie; appDelegate .h and .m and see if the framework is constructed or not.

Check that VALID_ARCHS has been correctly set. Build active architecture is NO

See this linkI have generated a framework and have been using that. It is quite frustrating But a good step.

Upvotes: 1

Related Questions