Skip to content

WTK 2.5.2 issue

WTK 2.5.2 introduced pretty annoying bug to a very usefull feature, that is, ability to run the midlet from the command line, so that you can see all the system.out printed to the console.
it was always possible to do the following:
\%PATH_TO_WTK%\bin\emulator.exe -Xdescriptor:MyMidlet.jad
But since I upgraded to WTK 2.5.2 for CLDC 1.1, I’ve started getting this [...]

Proguard as alternative to precompiler

With all the variety of JSRs and their availability on different devices, porting of mobile applications ends up being quite a challenge. The traditional approach is to use precompiler, that is still one of the best options and in my mind is the last tool that I use. What I ended up using to turn [...]

Extending J2MEUnit to publish the results

As those who use j2meunit to automate their testing already know, the problem is with viewing the results and gathering them, when tests run on real handset.
So I had to extend the original j2meunit to submit results to the server.
I had to create a new test runner that extends the j2meunit.midletui.TestRunner and overwrites siingle [...]