Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

how to create binary of iphone application

On reading the iTunesConnect_DeveloperGuide.pdf, i came across the term binary. This is the paragraph found in the pdf:

To submit your application through iTunes Connect and get it posted on the
App Store successfully, make sure you have the following: Application binary (includes 57px icon), large 512px icon for use on the App Store, primary screenshot, contract information, export compliance information and applica- tion metadata

It is also mentioned that the binary should be a zipped file.

Can anyone please explain what is a binary and how to create one?

Thanks

like image 558
Vaishnavi Naidu Avatar asked Sep 30 '09 11:09

Vaishnavi Naidu


2 Answers

This is the method I found out. Please correct me if there is any mistake:

Find the file ending in ".app" in the Products folder of your application in Xcode. Right-click on it and choose Show In Finder. From there, right-click again and choose Compress.

The resulting zipped file is the binary of your iphone application.

like image 84
Vaishnavi Naidu Avatar answered Oct 08 '22 17:10

Vaishnavi Naidu


In this case, what Apple really means is the complete Application Bundle. You create it by building your project with XCode for the iPhone OS target. Don't forget to sign it for App Store Distribution during the XCode build process, as described in Apple's iTunes Connect / Developer Pogram Portal documentation.

like image 31
MrMage Avatar answered Oct 08 '22 18:10

MrMage