Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

HI all. I have a problem with Eclipse, debugging an android application: all breakpoints I place doesn't work ( the applications doesn't stop. They are skipped as not placed ). There's a way to make them work?

I have Win7, JDK 6u23 64bit, Eclipse 3.6 64bit, all breakpoints are enabled ( skip isn't selected ).

Thanks in advance for the answers :)

share|improve this question

1 Answer

up vote 7 down vote accepted

Does the thread list show up in the Debug perspective when you start the app? If not, then Eclipse's debugger is not property attached to the phone/emulator.

Make sure you have android:debuggable=true in the Manifest. The latest version of the Eclipse ADT plugin should do this for you, but I've seen a few cases where it didn't work as I expected.

share|improve this answer
the manifest is ok, but you centered the problem: there's nothing in the tab "Debug" in the top left side of the debug view... how can I fix this? – Salv0 Jan 7 '11 at 13:11
The only thing I can think of is to go to the DDMS perspective and make sure your application (and device) is listed in the devices window and ensure that it is marked for debugging. – Erich Douglass Jan 7 '11 at 14:56
if I click on the process from DDMS perspective, and then on the debug Icon, I can finally debug!! ....unfortunately I incurred in an ANR stackoverflow.com/questions/4626103/debugging-widget-causes-anr thanks in advance for your help :) – Salv0 Jan 9 '11 at 16:46

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.