$ adb devices List of devices attached The device itself is recognized by the system, but android studio refuses to see the devices. The file of rights is registered Developer options are enabled, usb wires are working
$ adb devices List of devices attached The device itself is recognized by the system, but android studio refuses to see the devices. The file of rights is registered Developer options are enabled, usb wires are working
All problem solved, adb required administrator rights to listen on the port ...
$ sudo su $ adb kill-server $ adb start-server or
$ adb root Source: https://ru.stackoverflow.com/questions/517523/
All Articles