Sriram
Sriram

Reputation: 10578

Incremental JAR update for J2ME MIDlet

I need to update an application JAR file by sending a minimal incremental update of my J2ME code and res/ folder. What is the best way of doing this. This JAR gets installed on a phone. In so doing, I want to minimize the size of the update I send to the phone. I am developing with Eclipse for Nokia N97 SDK.

Upvotes: 1

Views: 1005

Answers (1)

funkybro
funkybro

Reputation: 8671

You can't update individual classes or resources on the fly. You could download new resources, and save them either to RMS or the file system using JSR75.

Beyond that, you'll need to install a new JAR.

Upvotes: 3

Related Questions