how to create binary of iphone application

30,412

Solution 1

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.

Solution 2

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.

Share:
30,412
Vaishnavi Naidu
Author by

Vaishnavi Naidu

Updated on July 09, 2022

Comments

  • Vaishnavi Naidu
    Vaishnavi Naidu almost 2 years

    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

  • Sixten Otto
    Sixten Otto over 14 years
    The zipping is a requirement to be able to upload it (since an app is a magic folder), not strictly a part of the definition. But, yes, the .app folder that is your build product is what iTunes Connect means by "application binary".