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?
source
share