It's pretty simple to build a jar from it (quick and dirty way):
Code:
svn checkout http://kdk-emulator.googlecode.com/svn/trunk/ kdk-emulator-read-only
cd kdk-emulator-read-only/vavi-apps-kdkemulator/src/main/java/
find . -name .svn -type d | xargs rm -rf
find . -name "*.java" | xargs javac -source 1.4 -target 1.4
cp ../resources/kindle2.png .
zip -9 -r vavi-kdemu.jar *
Then, to have the emulator run yourpackage.YourKindlet:
Code:
java vavi.apps.kindlet.KindletViewer yourpackage.YourKindlet
with the jar in the classpath.
I haven't tried it though. I much prefer running apps on the real device, if only to find possible quirks right away. But yeah, your choice.
UPDATE: Attachment removed. It's crap anyway.