Why is the app waiting for the debugger when its not connected to computer?

Android

Android Problem Overview


It seems like every step I take in the Android world I run into problems.

Usually, I have my HTC Hero connected to the computer via USB and I launch the application either in debug mode or in normal mode.

So, the last time I ran the app in normal mode. Then I disconnect the device (I want to try to have it "free", not connected to computer) and I start the app from the menu. When I do that I get a popup saying "Application xxx is waiting for the debugger to attach" and there it stops and eventually dies.

Why is it waiting for the debugger, when the last time I ran the app (while connected) I didn't run it as Debug?

Edit 1

I might add this little weird fact:

If I do "Run" (green/white arrow) when the device is connected I still get a popup on the device saying "Application xxx is waiting for the debugger to attach".

Edit 2

Found this page. He restarted his device and that worked for me too. Stupid not to try that right away...

Android Solutions


Solution 1 - Android

Just to close this question: I restarted the device, and that helped.

Solution 2 - Android

For me, the solution is to select "None" in "Developer Options"->"Debug"->"Choose debug application", though it already has "None" selected. Seems like the device put a "need to debug" label on my app sometime before which is still there when I "Run" the app on the device using my IDE (or even launch the app manually when the device is not connected to PC), and re-select "None" removes the label. Don't know whether it's the case.

Solution 3 - Android

Restarting is more time taking, Easier way is that in the device, select "Developer Options" > “Select debug app” and select "Nothing".

Solution 4 - Android

Also, don't forget to go into your Android Settings under "Development Options" and unselect "Wait for Debugger"

Solution 5 - Android

You could also try removing the android:debuggable="true" from your AndroidManifest.xml file when you want to test the application by itself. Turning off development options in the preferences menu will help also.

Solution 6 - Android

I assume you are using Eclipse. Are you sure you are pressing the green circle with a white arrow and not the green bug button? Try closing the project, reconnecting the Hero, open the project and click the green/white arrow.

With your Edit1 - Try uninstalling the application from the Hero and try again.

With you Edit2 - I believe that will turn off all debugging capabilities. Good luck.

Solution 7 - Android

One more solution :)

In Android Studio 2.x follow these steps:-

1. Run the application:- Run Menu -> Run "app-name"

http://i.stack.imgur.com/qUAoe.png" alt="Image to check how to run application"/>

2. Attach debugger to process:- Run Menu -> Attach debugger to Android Process http://i.stack.imgur.com/2WUSd.png" alt="Image to check how to attach debugger to process"/>

Solution 8 - Android

"Wait for debugger"in Developer options may have been set with your application. Hence the application for debugger to attach.

Solution 9 - Android

Turn off Developer option and turn it back on.

Solution 10 - Android

Other than setting Select debug app to none, In android 9 and above (haven't check if exist in Android 8 but doesn't exist in Android 7) need to un-check Verify apps over USB

I recently upgraded my device from Android 7 to 9 and suddenly all my own apps (developed by me and are not signed) stopped working. disabling option mentioned above made them all work again.

Solution 11 - Android

I fixed it by turning off "Developer Options" in settings and then turning it back on again.

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionTedView Question on Stackoverflow
Solution 1 - AndroidTedView Answer on Stackoverflow
Solution 2 - AndroidcodenoView Answer on Stackoverflow
Solution 3 - AndroidSelfx AadhyantView Answer on Stackoverflow
Solution 4 - AndroidLarsView Answer on Stackoverflow
Solution 5 - AndroidAustyn MahoneyView Answer on Stackoverflow
Solution 6 - AndroidfupsduckView Answer on Stackoverflow
Solution 7 - Androiduser5934402View Answer on Stackoverflow
Solution 8 - AndroidShinoo GoyalView Answer on Stackoverflow
Solution 9 - AndroidVithuView Answer on Stackoverflow
Solution 10 - AndroidAaAView Answer on Stackoverflow
Solution 11 - AndroidDawit AbrahamView Answer on Stackoverflow