Codemonkey
Codemonkey

Reputation: 4809

Debugging android chrome over USB on laptop gives 404 page

I've set up my laptop (Windows Vista 32bit) and my Nexus 5 to talk to each other over USB so I can use the inspector on Chrome tabs on the phone on my laptop.

I went through the steps at https://developer.chrome.com/devtools/docs/remote-debugging

The laptop can see the Nexus, and I can open/refresh/focus/close tabs remotely on the phone.

But when I click on the "inspect" link to launch the inspector I get a new window open with

404 Not Found The resource could not be found.

The URL of the window is

chrome-devtools://devtools/remote/serve_rev/@178678/devtools.html?&remoteFrontend=true&dockSide=undocked

Is there something else I need to install? For clarity, inspector works fine for tabs on my laptop.

Upvotes: 3

Views: 4823

Answers (3)

akshay dighe
akshay dighe

Reputation: 13

You have to update your both mobiles and laptop google chrome browser make sure both are using the same version of browser.. the same issue occurs for me, so I solve that issue by using this trick, hope it will work for you.

Upvotes: 1

Aks
Aks

Reputation: 8311

If your device is listed in adb devices then try inspecting it again with chrome beta for Android.

Ideally it should work without any issues if your device is detected properly..

Upvotes: 1

ashoke
ashoke

Reputation: 6461

  • please check if there is a mismatch between the chrome version on your laptop and the chrome running on android device. I suggest you try with latest chrome version on your laptop, preferably with canary build. canary can co-exist with your regular chrome.

    I just verified i was able to use the inspect with chrome canary and nexus 5.

    chrome remote debug

  • check output for "adb devices" on cmd prompt to see if your device is listed, if you do not have adb installed , this could be a cause, please install adb and follow legacy workflow as described in additional information.

Upvotes: 2

Related Questions