Reputation: 479
I have developed an IPhone application and i would like to know what will be the size of the application when installed in iphone. I am using xcode 3.
Can anyone please help me to find the size of the application?
Upvotes: 2
Views: 4952
Reputation: 1893
Project > archive;
Window > organizer > archives (tab up top between projects and documentation) > select your archive and press "estimate app store size" button.
Upvotes: 1
Reputation: 405
For anyone using Xcode 4+, you can just go to Product->Archive and then click on Share to create an ipa file. Then just save this ipa file and find out the file size in the Finder.
These seems to be the most reliable way of checking the true size of the ipa file.
Upvotes: 4
Reputation: 36072
iPhone apps seem to be distributed as .ipa files, which are just thinly disguised zip files,
so if you right click your app and compress it in the finder, you should
have a pretty good idea
of how big it will be on the iPhone.
Upvotes: 2
Reputation: 58448
Build the application, and then navigate to the directory where your builds are put when complete.
You can then use the Finder's "Get Info..." to see the size of the application.
Upvotes: 2