How to check iOS app size before upload

后端 未结 9 1679
滥情空心
滥情空心 2021-02-05 00:05

I would like to be able to check the size of my app before submitting to the app store. More specifically I need to know whether it will be below the magic 20 MB, to allow cellu

9条回答
  •  执念已碎
    2021-02-05 00:31

    With Xcode 8, since the estimate size button disappeared, one way to get a very close estimation (in my case the AppStore version is exactly + 2mb) is :

    • Archive your application
    • Export your application for "iOS App Store Deployment"
    • Extract the generated IPA (fast way, rename it to zip and double click)
    • Go to the .app (Payload/YOUR_APPLICATION)
    • Compress it (zip it with default finder action)

    Et voilà :-)

提交回复
热议问题