Chrome remote connection connects but then drops

I'm really trying to get Google Chrome Remote Debugging to work! I have a phone setup and confirmed:

enter image description here

Then below I see in chrome://inspect/#devices , as well as F12 (both open simultaneously);

enter image description here

It blinks from โ€œConnectedโ€ for about 3 seconds, and then proceeds to the next item:

Offline

ZX1G324RSV Authentication Pending: Please accept a debugging session on the device.

It drives me crazy, as it should be simple, but he just doesn't want to play the ball: / Do I need to do something special? I used it before on this PC, and although for the first time I had some fun and games, it worked after that.

There seems to be a ton of posts / articles on how to fix this, but none of them work for me. https://bugs.chromium.org/p/chromium/issues/detail?id=450492 , for example.

+5
source share
1 answer
  • Download the Android SDK here (only the SDK Tools section only) and unzip the contents.
  • Run the SDK Manager.exe and install the Android SDK platform tools.
  • Open a command prompt (just by clicking the Windows button and entering cmd.exe)
  • Enter the path using ex: cd c: / downloads / sdk / platform-tools
  • Open ADB by typing adb.exe
  • Run the following command by typing it and pressing enter: adb devices
  • Make sure you are prompted on your device if you still cannot see that your phone in Inspect Devices launches the following commands one after another (excluding ")" adb kill-server "adb start-server" "adb"
+1
source

Source: https://habr.com/ru/post/1266549/


All Articles