could you please tell me how to debug an android application line by line in eclipse ?
It is quite complicated , I have searched a lot but couldn’t find anything useful . Thanks from now .
could you please tell me how to debug an android application line by line
Share
Put a breakpoint at first line in the first class(right click on the line and select Toogle breakpoint), than run appli in debug mode (Run->Debug).
It will stop at your breakpoint and then use F6 to navigate line by line. (keep mouse on the desired variable and it will show the value at that point or even add in expressions to see the value every time)