Chrome://inspect#devices could not find devices for USB debugging
On Android: Turn off USB debugging, then turn it on. After confirming "allow usb debugging" popup on android, the inspect page still says: Pending authentication: please accept debugging session on the device.
Also tried changing USB config from MTP to PTP, not helpful. From computer file explorer, the android phone is accessible.
Chrome version is 102 on both Windows 10 and Android 8.0.
CodePudding user response:
Android Studio's adb
can interfere with Chrome Remote Debugging so only running one at a time is advised.
Confirm that your Android device is detected by
adb
withadb devices
. This is just to avoid problems with bad USB cables or bad USB ports.After shutting down Android Studio,
adb
may still be running so you'll have to runadb kill-server
to stop it.Relaunch Chrome.