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
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.
This is a problem of ADB connections as sometimes ADB cache a dead connection on your real/virtual device and due to which the port is busy and u cannot connect to it.
The simplest solution to this is RESTART your ANDROID phone that's it.
Had similar problem in Android Studio (0.5.1) with SDK 18.0.1
Warning: debug info can be unavailable. Please close other application using ADB: Monitor, DDMS, Eclipse
As you suggested updating the SDK worked. Now running on 19.0 and the problem got resolved.
Are you using adb through WiFi? That might cause debugging issues.
If so connect your mobile to your pc thru usb and debug again that should fix it.
Turn the USB Debugging on Device in Developer Options to off. And then switch it back on. This solved the issue in my case.
UPDATE
One more thing which fixed my case was clearing all existing breakpoints. And then trying 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.