Reputation: 7684
I have updated my Android Studio to version 3.3.1
, but now breakpoints are executing very slowly? First breakpoint take around 5 minutes to execute.
Can anyone please tell me what can I do to make it work like it was in the previous version?
Upvotes: 2
Views: 2674
Reputation: 942
I faced the same issue when I installed android studio 3.3.2. Any time I'd try to debug my app, it would run crazily slow. But finally got the solution as described below:
Go to the debugger and select view breakpoints
Make sure the Java method Breakpoint is unchecked.
It's often easy to add method breakpoints accidentally and That's usually the main reason behind the significant slowness of the debugging speed. Follow the few steps below if that the case:
Upvotes: 11
Reputation: 431
just remove all breakup points in your android studio.then automatically android debug will be fast.
remove all breakpoint step: go to debugger then select red button it will pop up all debugger break point and then remove.
Upvotes: -5