Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Debugging Mojo for Palm Pre with Eclipse & Aptana

I'm pretty new to Eclipse and Mojo (.NET guy). I'm having difficulty debugging. I can set breakpoints and switch to the "Debug" Perspective, but no matter what I can do (I am running in debug mode), I can't seem to get the IDE to stop at a breakpoint in the emulator. I'm sure it's a pretty newbie mistake with Eclipse. Anyone have a good step by step I can follow.

like image 651
Cody C Avatar asked Dec 29 '22 18:12

Cody C


1 Answers

Currently, there is no way to set a breakpoint in eclipse for use with the palm emulator.

As Gtompson83 mentioned, all we've got to work with is the gdb-style command line debugger that is included with the SDK.

Yes it's a pain.

I find it easier to attach to the emulator via ssh (scroll down to "Debugging" section) to view logging, and then just using logging in your app to figure out what is going on.

like image 77
TM. Avatar answered Feb 14 '23 18:02

TM.