Decrease iOS Application size to App Store -
i trying submit application in app store, , need decrease memory little bit, if possible. tried method gonna describe below make app lighter, not luck.
details
i followed these steps see causing large size
- make archive of project
- distribute
- save enterprise or ad-hoc deployment
- select
.ipa
file , changed extension.zip
- extract it, , open payload
- show package contents
contents
i had .png
files 680 kb
(when added 32 kb approximately), deleted them , reduced size of application 2 mb. there other files take space not considerably, except 1 executable file taking 90 % of .ipa's
size.
question
is possible decrease executable file's size? if not can give me hint should make app lighter in terms of size.
p.s use third party libraries vuforia sdk , libraries on github
how can reduce size of executable file
you cannot reduce size of executable inside built app bundle. code! ways reduce size are:
cut code. can't because exclude functionality makes app work.
remove architecture slice. should not because want build possible architectures.
having said that... have never generated executable inside app bundle anywhere near large. maybe measuring / building wrong:
make sure archiving. nothing else except archive worth measuring.
make sure generating release build when archive.
make sure release build settings include full compiler optimization (smallest, fastest).
Comments
Post a Comment