I would like to be able to check the size of my app before submitting to the app store. More specifically I need to know whether it will be below the magic 20 MB, to allow cellular downloads, since the app is created for a festival.

link|improve this question
feedback

4 Answers

up vote 4 down vote accepted

In Xcode 4: Once your app is ready for distribution, archive the app. In the Organizer, select the Archives tab. Select your app in the left hand column. Select the latest archive in the right hand column. Hit the Share... button in the top section. Save the file as an .ipa. Check file size in the Finder.

link|improve this answer
Thanks! Worked great.. – ViggoV Jun 20 '11 at 13:32
1  
Just FYI: an IPA file is just a zip file :) The final step before uploading to the app store is for you to to zip your app - you can just check the size of that zipped file :) (saves you having to build an archive) – deanWombourne Jun 20 '11 at 13:54
In xCode 4 the built-in app loader takes care of all that, so the "Share..."-button approach was the way to go! – ViggoV Jun 20 '11 at 13:57
feedback

You have to Build & Archive your application, and then you can check the size of you IPA file.

IPA archive (IPhone App) is the file which is downloaded by users from the App Store

link|improve this answer
feedback

Build the application, get the .app file in your products folder, Reveal in finder and select the app and right click, choose "Get Info" to see the size of the application.

link|improve this answer
Hmm.. The only .app file I can find in my products folder is far smaller than the expected outcome.. – ViggoV Jun 20 '11 at 13:13
feedback

I have a question to add on to this Q, when the 0.1MB, 0.2 MB counts.

I found a blog http://www.bonobolabs.com/does-the-app-store-20mb-3g-download-limit-matter/. They said that they made their ipa to be 19.9 MB, but ended up the app actual size in iTune App Store is 20.1MB....

What are the possible ranges for the difference between iPA in Organizer and the iTunes App Store?

I am working on an App that is going to be submitted soon. Now the iPA size is about 19.0 MB.So I will really appreciate if someone can give an reply.

link|improve this answer
I'm pulling this out of thin air, but could it be a matter of MB vs MiB (i.e. base-10 vs base-2)? Cellular data limits are often measured in MB (i.e. 10^6 bytes) whereas files on disk are measured in MiB (i.e. 2^20 bytes). This might explain the difference. – Sedate Alien Jan 18 at 3:15
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.