Reputation: 494
Sometimes when opening the Google Chrome inspect devices tab ( chrome://inspect/#devices ) the connected device is not showing, even though the debug is enabled in the device and the drivers are properly installed.
What could the problem be?
Upvotes: 1
Views: 2333
Reputation: 494
Not really sure what the problem could be, but I found it useful to restart the adb server
:
adb kill-server
adb start-server
And you can then check that your device is listed by running
adb devices
Upvotes: 1