Android Studio 2.2.1: slow debugging

Since upgrading to version 2.21 Debugging has become very slow. One example: when I run the application without a debugger, it completes one function in less than 2 seconds. When connecting the debugger, I have to wait more than 4 minutes to complete it. Update 2.2.2 did not solve this problem. What can I do to increase my debugging speed again?

+6
source share
2 answers

Verify that the debugger parameter is correct.

+5
source

Look, this helped me a lot:

Intellij Debugger slow: breakpoints method significantly slows down debugging

I waited until the minute I debugged the first web service request. Processors and memory monitors peaked during this period. Removed Java method breakpoints and returned to normal operation.

+1
source

Source: https://habr.com/ru/post/1011670/


All Articles