Quote Originally Posted by WILL View Post
Here is a link to the FPC Wiki, but I don't know much about the specifics. http://wiki.freepascal.org/FPC_JVM_Android_Development Again, I wouldn't use this tool as I can't debug while it runs on the device using FPC. (Unless there is another tool or someone made a tool.)
to take advantage of fpc on android you should really forget about JVM or DVM and instead go with pure native code. here is the easiest way that it can be done (this is a fairly new article): http://wiki.freepascal.org/Android

Quote Originally Posted by WILL
I don't think that even Ecplipse can debug on device. Please correct me if I'm wrong, I would sincerely like to know if that's not the case.
you are wrong. Eclipse can debug the java code on the device out of the box. Put a break point and wait for the program to hit it.

native code debugging is a bit more complicated but definitely possible. here is an article on how to do the setup for native debugging:
http://mhandroid.wordpress.com/2011/...-cc-debugging/

so what exactly is the advantage of using Oxigene?