Xcode 7 Archive size large

后端 未结 1 846
暗喜
暗喜 2020-12-16 01:59

I\'ve previously been using Xcode 6 to write my Swift app. I\'ve now upgraded to Xcode 7 and upgraded my Swift syntax.

Previously, when I did an archive of my app, I

相关标签:
1条回答
  • 2020-12-16 02:35

    The problem is that you turned on BitCode:

    Bitcode is big. But that's what it takes if you want the advantages that it offers.

    So the irony is that with bitcode, your app can be much smaller when downloaded directly to a user's device (because it can be thinned, optimized for that device), but it has to be much bigger when uploaded to the App Store.

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