Home > database >  Chrome://inspect#devices could not find devices for USB debugging
Chrome://inspect#devices could not find devices for USB debugging

Time:06-08

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.

  1. Confirm that your Android device is detected by adb with adb devices. This is just to avoid problems with bad USB cables or bad USB ports.

  2. After shutting down Android Studio, adb may still be running so you'll have to run adb kill-server to stop it.

  3. Relaunch Chrome.

  • Related