Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

android debugger does not stop at breakpoints

I am seeing debug statements in the console but the debugger does not stop on any breakpoints. I tried clearing all breakpoints and adding them back in. Not sure how this can happen but it is.

like image 341
Androider Avatar asked Mar 14 '11 00:03

Androider


People also ask

Why are my breakpoints not hitting?

If a source file has changed and the source no longer matches the code you're debugging, the debugger won't set breakpoints in the code by default. Normally, this problem happens when a source file is changed, but the source code wasn't rebuilt. To fix this issue, rebuild the project.

Why is Eclipse not stopping at breakpoints?

The solution was to enable it again, start a debug session, the breakpoint is hit and shown in the UI, then disable again the option. There is also another simpler way that will make Eclipse show the debugging highlight at the breakpoint or rather refresh the debugging UI to work as it should.

How do I terminate debugging?

To end a debugging session in Microsoft Visual Studio, from the Debug menu, choose Stop Debugging.

How do you ignore all breakpoints?

You can disable all breakpoints in one of the following ways: On the Debug menu, click Disable All Breakpoints. On the toolbar of the Breakpoints window, click the Disable All Breakpoints button.


1 Answers

Solution that worked for me:

  • Simply uninstall the app from the device (manually on the device) and try debugging again(!)
like image 156
TT-- Avatar answered Sep 29 '22 02:09

TT--