I have an app that using alot of .png fils, so to reduce app size I used PngOptimizer to optimze them. I was happy with the results and the file size of the png's went from alittle over 1mb to 300kb or so. but for some reason the app size only went down about about 100kb. doesn anyone know why? I would really like the file size reduction that I saw in my png files to carry over to my app size. please help
+2
A:
Your .APK application files already get compressed using the deflate algorithm. That is the same algorithm used by PNG files.
So the optimization you've done with the PngOptimizer has already been done to some extend by the .APK packer.
If you want to reduce the size of your application you should either reduce the color-depth of your PNG files (this helps a lot) or switch to .JPG files where possible. These could - depending on what the image contains - be smaller.
Nils Pipenbrinck
2010-07-25 22:23:55
thanks, i will try that
John
2010-07-25 22:44:39