Reputation: 29867
In Eclipse with Android, is it possible to run an app in debug mode but not have any breakpoints but still view the value of variables as they get updated?
Upvotes: 1
Views: 171
Reputation: 157437
you have to add a watchpoint
instead of a breakpoint
. But still the debugger will stop on the watch point every time the variable you are watching is read or modified
Upvotes: 1