So I built my IMLet and now I want to run it on my Raspberry Pi outside of Netbeans. After reading the documentation I see that there are a few commands that can be used to make this happen. Here are the steps I did:
- Transfer the Jar and JAD file to the Raspberry Pi
- Install the Midlet using the installMidlet.sh script
- Run the Midlet using the runMidlet tool
Should be straight forward bu unfortunately it seems that there is a documentation and product feature (feature is a known bug) that the runMidlet tool is not behaving according to documentation. And after posting my problem to the Java ME Embedded forum I got the solution. So step #3 should be something like this instead:
sudo ./run.sh -1 com.sun.midp.appmanager.AmsLauncher -launcherMode 2 tmp36rpi.IMlet
I also learned that the permission of the jwc_properties.ini file can produce interesting error messages, that's why I am using sudo with all commands.
<<Andy>>