View Single Post
Old 07/03/2009, 02:20 AM   #8 (permalink)
Blubble
Member
 
Blubble's Avatar
 
Join Date: Jun 2009
Location: Silicon Valley, California
Posts: 1,025
Likes Received: 0
Thanks: 37
Thanked 444 Times in 161 Posts
Default

You actually can debug through SSH to the emulator.

I connect to the emulator using putty and creating an SSH connection to localhost:5522

Once in, you type debug. That will cause some lines to show up, but won't give you back a prompt. Then you simply hit enter.

You can get help by typing help or ?

It is a real pain to use, but you can set breakpoints continue and step through your code. You can also see info on locals and args. You can also use the print command to display information about objects.

Things like this are why the SDK has not been released publicly. Most developers are used to advance debugging interfaces and something like this can be hard for some people to work with.
Blubble is offline   Reply With Quote