Quote:
Originally Posted by kranu
Gaaaah!
No matter how hard I try to follow this and ADQ's blog, I can't get it to show up on my Kindle! It compiles with no errors and what not.. and I've signed it and loaded the developer keys, but it does not show up on my Kindle screen. I've tried restarting multiple times too. The code is, as far as I can tell, very similar to ADQ's, which works perfectly on my Kindle.
I'm pretty new to Java, so it is probably something obvious that I am forgetting to do. If somebody could help me tell me what's wrong, I would be eternally grateful.
|
I'm new to java also, but I just managed to get my first kindlet run.
I took a look at your package, I'm not sure what tool you used to package it. But I used ellipse, and exported it as a jar file, using a manifest file:
Code:
Manifest-Version: 1.0
Description: Test for Kindle
Main-Class: test.Main
Implementation-Title: Hello
Implementation-Version: 0.0.1
Implementation-Vendor: Me
At first, I didn't include
Code:
Description: Test for Kindle
Main-Class: test.Main
which caused my kindlet not to show up.
With these lines added, it ran like a charm.