How to convert j2me to lwuit work in android?

How can I convert a J2ME application that uses the lwuit library for android apk?

I tried to convert using mircoemulator, but when I run the application, it shows an error and exits.

+2
source share
2 answers

Read this article, LWUIT for Android. It clearly states how to make LWUIT with Android. Watch stpes carefully and change your MIDlet code. Just browse through the LWUIT-Incubator repository and use it to develop Android with LWUIT. Also read README_Android.txt in this repository.

+6
source

There is no way to do a direct conversion. Strictly speaking, you can make a port, adapt the code, or use some kind of emulator or shell to run the CLDC / MIPD classes.

The guys from Opera also used MicroEmulator for OperaMini.

0
source

All Articles