Is there a way to have a conditional debugger in android studio? for example, I want to go into debug mode when the value of a particular variable. eg:
for(MyClass myclass: ClassList){
String title = myclass.gettitle(); // this is where break point is
}
Prior to this, I do not need debug mode. I just want to test the application for this exact value. for example, when title="KickBoxing"in this case I have to check the value of the variable, and if it is not my required value, I have to press F9 to go to the next value. It may take 50 times to get to my desired value.
Kenji source
share