How to reduce Java ME application size?

Working with Java ME I had the following problem:

All classes (including anonymous ones) in the project are transformed into separate files after the creation of the project. This leads to an increase in the size of the application, since each individual file is at least 1 kilobyte in the assembled package.

This issue is especially important in J2ME, where the size of the application is so critical.

My questions:

  • Is there any way around this problem?
  • Can I use a specific method to reduce the size of the application?
+5
source share
2 answers

, Proguard , 300K Jar. ? . ? , :

  • defaultpackage = "",
  • overloadaggressively = "true", ,
  • optimizationpasses = "3", . . , , .
, jar 256kb, proguard.

, , - PNGGauntlet lwuit?

+1

? , , . , ?

, Proguard.

+5

All Articles