1

I have 2 different named projects. Both have same file same size only difference in icons and splash screen and project name.

App folder size is same. But when I am creating ipa for both then there is huge difference (>4MB) in ipa size. Can any one help to figure this out?

Kjuly
  • 34,476
  • 22
  • 104
  • 118
Mayank Purwar
  • 265
  • 1
  • 4
  • 16

1 Answers1

1

I guess you created your projects in different time, thus have different settings. You can go to

Xcode > Target > Build Settings > VALID_ARCHS

check whether they're the same (something like arm64, armv7 & arm7s). The more you offered in VALID_ARCHS, a bigger ipa will be got after you archived.


Further reading for VALID_ARCHS, you can check THIS ONE.

Community
  • 1
  • 1
Kjuly
  • 34,476
  • 22
  • 104
  • 118
  • This is the issue. I have not added arm64 in second one so I am getting the lesser size of ipa file. thanks – Mayank Purwar Apr 06 '15 at 12:15
  • 1
    @MayankPurwar cool! B.t.w., u'd better to add `arm64` for ur 2nd project as well, for this reason: https://developer.apple.com/news/?id=10202014a – Kjuly Apr 06 '15 at 12:16