Reputation: 365
I have a project with 5.2 Mb size. But when I create ipa file its size increases and becomes 71.2 Mb. Why does this happen? Is there any way to reduce it? I used swift 3 while developing this project.
Upvotes: 1
Views: 628
Reputation: 73936
There's a bug in Xcode 8.3 that causes large IPA file sizes. Upgrade to 8.3.1, this has a fix for that bug in it.
Also, bear in mind that the Swift runtime libraries are copied into your application bundle.
Upvotes: 1