I've started developing an app for the p800 using pJava. But now I have run into some problems....
When I try to test my app with the debug emulator, the whole thing crashes at startup.
When using the release emulator I get an output to the console saying: "Could not create the Java virtual machine".
I think this is just some enviroment variable problem, but I'm not sure of which it is.
Does anyone have any ideas?
I've installed the SDK using Kajetan's excellent instructions, so I think I got most of the variable right...
1) _epoc_drive_j doesn't correctly point to the directory containing classes.zip, or
2) you try to include a class in your application which the VM can't find.
In either case, the continued message should indicate which one. If it cannot find java/lang/Thread it's #1. If there's another classname listed in the ClassNotFoundExeption (which I assume is what you get), then you need to find that class and ensure it's available somewhere along the VM's classpath.