Reputation: 3964
Here is my problem:
I simply want to see if my_list
contains the string it got from letters
. At the bottom of the code I use a toast method, and it shows that I have correctly added the string to my_list
. But for some reason when I try debugging the program it doesn't add my_list
or letters
to the variables section. The variable section is empty. And as you can see, I have put tons of breakpoints in the code but the program just runs with breaking.
I have been trying to debug this application straight from my phone. I have tried cleaning the project, restarting eclipse, building, changing code but the debugger just won't work.
Am I doing something wrong? Anybody know why these variables (my_list
and letters
) are not added to the variables perspective?
Please let me know if I need to provide more code or information.
Upvotes: 1
Views: 2618
Reputation: 2927
You have disabled breackpoins. breakpoints icon should look like this. enable it.
Upvotes: 2
Reputation: 3964
I figured out the problem:
The debugger was set to "skip all breakpoints" for some reason. So once I changed that setting everything worked perfectly.
Upvotes: 3