Did Apple change their app archiving method?

后端 未结 1 580
一生所求
一生所求 2021-01-18 00:36

We\'ve been fighting to get our app under 20 MB so that over-the-air downloading would work, and with our last release 2 weeks ago we succeeded.

It took a bunch of t

相关标签:
1条回答
  • 2021-01-18 01:05

    In http://www.alexcurylo.com/blog/2010/05/22/tip-shipping-app-size/ there is a way to calculate the final size. In short:

    • open the .app bundle via right-click -> Show Package Contents (on Mac)
    • locate the executable file and remember its (uncompressed) size (Size “A”)
    • delete the executable from the bundle
    • zip the bundle and remember the bundle’s compressed size (Size “B”)
    • Size “C” are the 100 KB from the additional files added to the bundle by Apple.

    The final calculation for the maximum size of your App is as follows:

    A + B + C = maximum size of your App after approval

    in words:

    (uncompressed executable size) + (app bundle compressed but without executable) + 0,1 MB = maximum size of your App after approval

    0 讨论(0)
提交回复
热议问题