Android studio omits breakpoints

android, android-studio

Solution

Do you debug on device or on emulator? If device then try to switch back to Dalvik from ART The first line breakpoint works only

Problem

When I'm trying to debug application using android studio, I set some breakpoints in the IDE and after starting the debugger I've got an info on every single one breakpoint (in the baloon): ``` Warning : No executable code found at line ... ``` It looks like the message appears when the application reaches first BP. Just to be clear - I have executable code in those lines like String s = "asd";

Original source

Related problems