问题
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 plugged in the iPhone into my mac. I clicked on Windows, Devices expecting it to be there but it wasn't. I don't remember.
Where on Xcode can I check the approximate app store size of my app?
回答1:
The Organizer has this functionality for Archives. So, you'll need to create an archive:
- Product > Archive (you need the iOS device scheme selected here, which means you need a valid signing identity set up)
- Window > Organizer
- Select the "Archives" tab.
- Select your archive, and in the header detail view, click "Estimate Size"
回答2:
To find out what's the size of the file that user will download from the App Store, you need to do the following.
- Archive your app
Export your archive for testing outside the store.
Select “Export for specific devices” and choose “All compatible device variants” from the pop-up menu.
Select "Rebuild from bitcode." EDIT: this step doesn't exist since as late as Xcode 9.4.1.
- 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.
回答3:
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".
回答4:
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) .
来源:https://stackoverflow.com/questions/29152093/how-to-check-approximate-app-store-size-of-app-in-xcode