How to check approximate App store size of app in Xcode

↘锁芯ラ 提交于 2019-11-30 17:31:25

The Organizer has this functionality for Archives. So, you'll need to create an archive:

  1. Product > Archive (you need the iOS device scheme selected here, which means you need a valid signing identity set up)
  2. Window > Organizer
  3. Select the "Archives" tab.
  4. Select your archive, and in the header detail view, click "Estimate Size"

To find out what's the size of the file that user will download from the App Store, you need to do the following.

  1. Archive your app
  2. Export your archive for testing outside the store.

  3. Select “Export for specific devices” and choose “All compatible device variants” from the pop-up menu.

  4. Select "Rebuild from bitcode." EDIT: this step doesn't exist since as late as Xcode 9.4.1.

  5. In the output folder, you will find App Thinning Size Report.txt, which breaks down the compressed and uncompressed file sizes, plus the size of any On Demand Resources, for each device type.

For more information take a look at apple docs.

The organizer in xcode no longer shows this info for some reason. However if you archive your project and in the organizer right click on the file you archived and click "show in finder" and you will be able to see the size when you right click and choose "get info".

I can't see the "Estimate Size" in Xcode (Version 7.0.1).

Following with josefdlange , I can find the "Show in Finder..." when I Click the header detail view(small icon) .

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!