How to check approximate App store size of app in Xcode

后端 未结 4 870
执念已碎
执念已碎 2020-12-31 02:39

I used to do it but I haven\'t done it in a while and i\'ve added to my game. Don\'t remember where on Xcode I can check the approximate app store size of my app.

I

4条回答
  •  鱼传尺愫
    2020-12-31 03:00

    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.

提交回复
热议问题