Android Studio - Logcat showing "no connected devices" and "no debugged applications",

I am using Android Studio and logcat does not show output; it simply says “no connected devices” and “no debugged applications” (see the figure below).

I know this seems like a duplicate, but I tried answers to other questions (for example, Android Studio - without debugging applications ), and it did not help: I ​​turned on ADB integration, set the debug flag in the gradle file, closed Eclipse and restarted several times Android Studio and my computer.

Thanks!

enter image description here

+7
android android-studio logcat
source share
1 answer

You can try restarting the adb server as root.

sudo adb kill-server && sudo adb start-server

+1
source share

All Articles