Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm involved with a legacy BlackBerry appplication, where the COD install file is about 5 MB in size (mostly from embedded images and such). Is this size anything to be concerned about? Should a BlackBerry app generally be smaller in size, and why?

share|improve this question

3 Answers

up vote 3 down vote accepted

Some great answers to this question so far. One thing I'd like to add is that if you have duplicate images in your app (to support different screen sizes on different devices) - then consider creating different builds of the app that only use the images for a particular screen size. If you also target different OS versions, this might multiply the total number of builds quite a bit - but if you're concerned about application size then it is a good approach.

share|improve this answer
Yes, Marc, I should have highlighted this point also. :) – Arhimed Nov 20 '10 at 20:20

You should try to optimize your images first. Running images trough http://www.punypng.com/ is a great way to do that. See if some images could be replaced by a smaller one or try to make use of the same image as often as possible.
The Blackberry devices have 32 or 64 or 128 MB RAM depending on model. You need to consider if all those 5 Mb will be used in memory at the same time or if it will use smaller or bigger amount. Remember that you could make an application 40 MB big in RAM but then no other apps could be ran.

share|improve this answer
Unfortunately, the images are pretty delicate since they use a lot of gradients. The BB screens are typically 16-bit color, and any kind of heavy compression of the images makes them look especially hideous. – MusiGenesis Nov 20 '10 at 3:14
The latest devices such as the Torch 9800 and Bold 9850 have 512MB of flash memory, so it's becoming less and less of an issue over time. But there are still a lot of in-market devices with limited space, especially if there are already a large number of apps installed on it. – Marc Novakowski Nov 20 '10 at 20:06
1  
I think that punypng.com will do the compression lossless if it's png and lose very little if it's jpeg. Try it and don't use the images if you don't like the result. – Zalastax Nov 20 '10 at 22:07

Well I don't think 5Mb is too much for a modern smartphone. Anyway if your app does really need all of the images then you just have no other choice than to have a big code file. In some cases of a slow internet this could produce a slow OTA installation process. So some impatient users may cancel installation. To overcome slow install some devs separate core code from resources, so the resources are being downloaded after the OTA installation, on a first app run, probably under popup or some sort of setup wizard. This is of course makes the startup code harder to implement.

Another concern I can think of - are the images optimized in size? BB displays colors in a 16 bit per color channel scheme (RGB 565) regardless of your image color depth. So it worth to preprocess all the images (if not already) through some 565 filter. There are few Photoshop plugins for this. However don't count on a huge size reducing. For a 5 Mb image set you maybe will get just a 1 Mb "discount" (20%), so anyway you'll still have several MBs.

And the final note - be sure to properly architect your classes in order to properly utilize RAM. Most likely you have your image resources in a form of some compressed image formats (JPG, PNG). So in that form they are relatively small, however when they become a Bitmap then each pixel of a bitmap area eats at least 2Bytes or at most 4Bytes (it depends on Bitmap type). Make sure you don't play too much with a static stuff, because once loaded it will live (eating RAM) till the very app end unless you manually nullify it.

Thanks.

share|improve this answer
This is a BlackBerry, not a "modern smartphone". :) – MusiGenesis Nov 20 '10 at 20:45
Does a new version of the OS have a 32-bit ARGB Bitmap type? I'm stuck in 4.6.1 – MusiGenesis Nov 20 '10 at 20:46
Just looked at Bitmap API of 4.6.1 and 6.0 - they do not differ in this part. – Arhimed Nov 21 '10 at 10:02

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.