Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Estimated app's store size

Tags:

After archiving an app version, on the organizer window there was a button, clicking it calculates and displays the estimated size of the app on the store.

In Xcode 6.2 or later versions, that button disappeared! Is there still a way to know the estimated app size?

like image 867
hasan Avatar asked Jun 03 '15 12:06

hasan


People also ask

How big is the App Store?

The Apple App Store was the second-largest app store with roughly 2.2 million available apps for iOS. Whereas the exact number of apps may fluctuate as Apple and Google regularly remove low-quality content from their app stores, the number of apps has been steadily increasing over the years.

How many GB is the average app?

Of all mobile apps published on the app stores, the average Android app file size is 11.5MB.

How much apps are in the App Store?

Because we offer nearly two million apps — and we want you to feel good about using every single one of them.


1 Answers

Yes, it is still possible, but have to do a little work!

  1. Just select the project from"Archive", then open package content.

  2. Then in the .xcarchive file, there is an Applications directory.

  3. Now, open the .xcarchive in finder, and select show package contents.

Finally go to Products then Applications then App Name and you can now view the file size.

Screenshot step by step:-

enter image description here


enter image description here





Update:

Just in case people have doubt regarding the difference in size of the binary before uploading to iTunes and after uploading to iTunes here is the calculation:-

Apple is encrypting the executable file. By doing so its size doesn’t change much but its contents do which usually can no longer be compressed as much as before. By putting all this together i came up with a way to calculate the maximum size of your App in the App Store (it will most likely be less than this):

open the .app bundle via right-click -> Show Package Contents (on Mac) locate the executable file and remember its (uncompressed) size (Size “A”) delete the executable from the bundle zip the bundle and remember the bundle’s compressed size (Size “B”) 

Size “C” are the 100 KB from the additional files added to the bundle by Apple. The final calculation for the maximum size of your App is as follows:

A + B + C = maximum size of your App after approval

The calculation put in words:

(uncompressed executable size) + (app bundle compressed but without executable) + 0,1 MB = maximum size of your App after approval

Referred from this

like image 200
Vizllx Avatar answered Oct 30 '22 22:10

Vizllx