I'm using Eclipse 3.3 and Android 1.6. I installed DDMS on my Eclipse and tried to insert breakpoints as in tutorial https://www.ibm.com/developerworks/library/os-ecbug/ . However, as I run my project, the program won't stop when it reaches the breakpoint. Is there a bug in Eclipse or am I doing something wrong?
+1
A:
May be this is the problem:
However, as I run my project
Debug the project instead of running it. Select 'Debug' from the 'Run' menu or hit F11.
Amarghosh
2009-10-08 06:32:59
+2
A:
To add to Amarghosh answer's, check also your JDK version.
There is a bug with JDK6_u14 et u15, which made your breakpoints "invisible" (the program would not stop during a debug session)
Fixed in the latest one JDK6u16.
VonC
2009-10-08 07:10:19