View Single Post
Old 08-17-2013, 08:47 AM   #3
ixtab
(offline)
ixtab ought to be getting tired of karma fortunes by now.ixtab ought to be getting tired of karma fortunes by now.ixtab ought to be getting tired of karma fortunes by now.ixtab ought to be getting tired of karma fortunes by now.ixtab ought to be getting tired of karma fortunes by now.ixtab ought to be getting tired of karma fortunes by now.ixtab ought to be getting tired of karma fortunes by now.ixtab ought to be getting tired of karma fortunes by now.ixtab ought to be getting tired of karma fortunes by now.ixtab ought to be getting tired of karma fortunes by now.ixtab ought to be getting tired of karma fortunes by now.
 
ixtab's Avatar
 
Posts: 2,907
Karma: 6736094
Join Date: Dec 2011
Device: K3, K4, K5, KPW, KPW2
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.

Last edited by ixtab; 08-17-2013 at 10:32 AM.
ixtab is offline   Reply With Quote