Loading...
Logo
Processing Forum
Hi all,

I'm using processing under gnu/linux to generate an Android app. I have an exception occuring in the java and I want to find the corresponding line in the pde file.

Is there a way I can see the generated java to tie up the exception line number to something I can backtrace into the pde?

Replies(4)

Take a look in /tmp there will be two folders generated when you run a sketch, one will include a *.class the other will include the *.java file you are looking for.
Ah ha! Thanks.

For completeness the files were located under
/tmp/android<randomnumbers>sketch/src/processing/test/<sketchname>

Or just export your sketch...
And I realise now that the java file location is listed in the compilation output trace.