I am debugging my Android app by having it stop at a breakpoint. Indeed, execution stops at the breakpoint, but once I step over one step, then step into, the problems start: Instead of stepping into the function, the debugger seems to perform a step over, just highlighting the next line. When I then press step over, a message box pops up with one of the following messages:
com.sun.jdi.VMDisconnectedException: Got IOException from Virtual Machine occurred creating step request.
or
org.eclipse.jdi.TimeoutException: Timeout occurred while waiting for packet xxx occurred creating step request.
This happens whenever I perform the steps above (Always on the same breakpoint), which is preventing me from debugging my app.
I am debugging on a real device, using Eclipse on Windows.
I already tried:
- Restarting Eclipse
- Increasing the Debugging Timeout in Eclipse, which just leads to the first error to appear more often in comparison
Now here are my questions:
Has anyone else come across this problem?
What could I do to solve the problem?