Can't see my device of chrome://inspect/#devices

后端 未结 5 825
礼貌的吻别
礼貌的吻别 2021-01-31 18:30

I\'ve followed the instructions at google: https://developer.chrome.com/devtools/docs/remote-debugging. I\'ve also went over the troubleshooting section - but nothing seems to w

5条回答
  •  爱一瞬间的悲伤
    2021-01-31 19:07

    Try these steps:

    • Download and install Android SDK
    • Open SDK Manager.exe
    • Select Android SDK Platform-tools and press Install packages...
    • Open a command prompt and execute these commands:
      • cd C:\Program Files(x86)\Android\android-sdk\platform-tools (or C:\Users\User\AppData\Local\Android\Sdk\platform-tools)
      • adb.exe devices

    You should receive a response like this:

    List of devices attached
    ABCDEFG123  device
    

    If your device is listed check if Chrome detect the device, otherwise try to execute this command:

    • adb.exe kill-server
    • adb.exe start-server
    • adb.exe devices

    Check again if Chrome detect the device.

    If your device is not listed at all after executing adb devices command there is something wrong in your configuration (e.g. incorrect or missing drivers?)

提交回复
热议问题