Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I developed one application for iPhone. After I build I got .app file in build folder. My application name is Myapp, then i got Myapp.app file in the build folder.

My problem is i want to create the .ipa file. how is that.. it is for to install jailbraked iPhone..

share|improve this question

4 Answers

Create a folder named Payload. Copy Myapp.app into the Payload directory. Compress the Payload directory and rename the zip file to Myapp.ipa.

share|improve this answer
Strange, but the folder must be named "Payload", nothing else will work, once you have compressed the file you can name it whatever you want. – Intentss Apr 30 '10 at 1:49
Yes, I thought that was strange as well. – Tony Eichelberger Apr 30 '10 at 16:29
Thanks for this! I ve been going crazy trying to figure this part out! – looneydoodle Mar 25 '11 at 19:33

With Xcode 4, there is now a way more easy way:
In the menu bar, go to Product > Archive.

Xcode archive menu screenshot
The organizer will then open in the Archives tab, and you will be able to save an IPA using the Share… button.

If the Archive menu item is disabled, make sure you have the scheme set to iOS device and not the iPhone Simulator. You don't have to have a device plugged in, though.

I also wrote a script to do this from the command line: xcodearchive. It works similar to xcodebuild, but generates an IPA.

share|improve this answer
Manually creating the .ipa file gave error but using the Archives tab it worked perfectly fine. Thanks – user427969 Jan 9 at 5:21

Run Script

/bin/sh

mkdir $CONFIGURATION_BUILD_DIR/Payload
cp -R $CONFIGURATION_BUILD_DIR/$PRODUCT_NAME.app $CONFIGURATION_BUILD_DIR/Payload
cp $CONFIGURATION_BUILD_DIR/$PRODUCT_NAME.app/iTunesArtwork $CONFIGURATION_BUILD_DIR
cd $CONFIGURATION_BUILD_DIR
/usr/bin/zip -r $PRODUCT_NAME.ipa Payload iTunesArtwork
rm -rf Payload iTunesArtwork
exit 0
share|improve this answer

Also, if you want to include the logo file, add the icon to the directory and name it "iTunesArtwork". compress that along with the Payload directory that has the .app file in it.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.