Missing "Download Size" column in "App Store File Sizes" in iTunes Connect

In documentation and online discussions, everyone refers to a Download Size column in the popup that appears when, in iTunes Connect, we click on Activity > [build number] > App Store File Sizes (under Compressed File Size). However, I only have the Installation Size column in my version.


Has anyone else experienced this? Does anyone know why?


Thanks.

I have this same problem.

As per the documentation: https://developer.apple.com/library/content/documentation/LanguagesUtilities/Conceptual/iTunesConnect_Guide/Appendices/Properties.html

the App File Size information should be available once the app is approved by Apple and is available for download.


However recently I've been experiencing the same issue of not being able to see the Download Size column of the app. Not sure if this functionality is broken.

This documentation link is broken. Is there updated documentation?


Also, why wouldn't this be available before submission, since the download size is what matters for the cell network size limit?

Having the same issue. Is there any resolution on this problem?

We're facing the same problem

Same poblem

Confirm that the Download Size column has been removed, but if you're willing and able to open the web inspector and track the AJAX requests being made to the iTunes Connect API, the API endpoint ending in `/details` still includes the data you're looking for in the JSON response, e.g.:


        "sizesInBytes": {
            "10.5-inch iPad Pro": {
                "compressed": 8228911,
                "uncompressed": 15220736
            },
            "10.5-inch iPad Pro Wi-Fi + Cellular": {
                "compressed": 8228911,
                "uncompressed": 15220736
            },
            "12.9-inch iPad Pro (2nd generation)": {
                "compressed": 8228911,
                "uncompressed": 15220736
            },


`compressed` is the Download Size and `uncompressed` is the install size.


I haven't dug too deeply into iTunes Connect API access but I wouldn't be surprised if this same data were exposed.


All that said, there might be a very good reason why this column was removed, so maybe the data returned in the API is misleading.

I can confirm that the Compressed File Size literally appears and disappears randomly! Right now I have the same build open in two tabs, one has the Compressed File Size displayed, the other is missing it completely. It is a build from two days ago that is fully approved. Most of the time the Compressed File Size will not be displayed though, it's some rare thing you happen to see now and again lol.

Missing "Download Size" column in "App Store File Sizes" in iTunes Connect
 
 
Q