I am trying to debug an app with Intellij
13.0 on Windows 7.
Whenever I start debugging I get the following warning:
Warning: debug info can be unavailable. Please close other application using ADB: Monitor, DDMS, Eclipse"
I have tested it on a device and in the emulator. The only thing I have open is Intellij. I tried also with closing adb before I start debugging, but nothing changed.
best regards
[EDIT] I solved it, by updating my android SDK build tools to 18.1.1.
The same issues occured with me all of a sudden while debuging an app on my samsung galaxy S6
This is what worked for me : closed android studio killed adb , using adb kill-server removed all of my previous breakpoints(debug points) Restarted android studio and my phone Restaterted Mac did a debug without any breakpoint. Then again did debug by putting the breakpoints again in my code, Eureka it worked. Luckily it burned only half hour of mine.
This happened to me and the thing I did was to set
in
<application>
tag...like:This fixed the problem with later SDKs.
Turn the USB Debugging on Device in Developer Options to off. And then switch it back on. This solved the issue in my case.
For me this situation occured when device was connected via usb and
adb tcpip
was enabled (ADB in Wi-Fi mode).Just run command
adb usb
with connected device and try to debug again.For those who are using Android-Studio: check your gradle file and product flavours and be sure that "debuggable" attribute in manifest is NOT set to false.
You can restart ADB in windows without writing any commands.
Just open Task Manager
Sort the list by name
Find process named "adb" Right click on it and then select "End Task" Done
Next time you run any app the adb will start with a new instance.