Question

When my app starts on my device xcode says it uses 3.4MB of memory.

When I use every feature in my app on my device xcode says it uses 14MB of memory.

When i submit my app on the appstore, when a user goes to download it, under information what will be the size of my app?

thankyou

Était-ce utile?

La solution

That's your RAM usage, and has nothing to do with the download size.

The download size will be the size of all the png images/videos/etc in your application, plus a tiny bit more for the actual code.

To find out the exact number, do an "archive" build, and in the organiser there is an "estimate size" button.

Autres conseils

The size of your app and the amount of memory it uses while running will be different because these are different things.

The size of the app is the size of the IPA on disk (which is a zip file) containing:

  • code (e.g. armv7 and armv8 slices)
  • supporting files (e.g. graphics, sounds etc...)

I would do an Ad-Hoc build in Xcode and look at the IPA produced in order to get the size.

Licencié sous: CC-BY-SA avec attribution
Non affilié à StackOverflow
scroll top