The RIM compiler performs additional optimization and compression in the resulting ".jar" when creating the final .cod file, but developers can do a lot to significantly reduce the final size of the .cod file.
One such thing is to run PNGCrush , OptiPNG, or a similar tool to reduce the size of the included .png files. In an application with a large number of image files (for example, a user interface application), this can lead to a significant reduction in the final size of the .cod file.
Do you have any tips on optimizing the final .cod file for size? Is there something you need to do in the .java code itself? Is there something you need to do in the project structure? Do something with files or resources?
Thanks!
source share