How to Resolve "Waiting for Debugger" Message

Why Android Studio says Waiting For Debugger if am NOT debugging?

I've ran into this issue in the past and again today. In my case the problem is resolved by a device reboot. After a clean boot I can again run the application and the "Waiting for Debugger" prompt does not appear.

How to resolve Waiting for Debugger message?

Some devices will only let the debugger attach if the application has the android.permission.SET_DEBUG_APP permission set in its manifest file:

<manifest>
<uses-permission android:name="android.permission.SET_DEBUG_APP"></uses-permission>
</manifest>

Waiting for Debugger message stuck when debug app

Enable android ndk and ndk workspace support in file->setting->plugins

Debugging with Android Studio stuck at Waiting For Debugger forever

Both of my dev machines have JDK 8 installed, the debugging function is restored once JDK 7.0.71 was installed and JAVA_HOME environmental variable was set to point to the new JDK.

Guess there's some compatibility issue between Android Studio + ADB + JDK8 (Eclipse + ADB + JDK8 works fine).

Waiting for debugger to attach showing even when not running in debug mode

Make sure your java files dont have any break point and Restart the device every thing should be normal.

I was experience the same problems where my application was always being run in debug mode. Restarting the device did the trick for me.

and make sure you are using

right click on project-->>Run As -->> Android Application



Related Topics



Leave a reply



Submit