Mobile Chrome Debug
Original Answer:
I have the S3 and it works fine. I have found that a common mistake is not enabling USB Debugging in Chrome mobile. Not only do you have to enable USB debugging on the device itself under developer options but you have to go to the Chrome Browser on your phone and enable it in the settings there too.
Try this with the SDK
- Chrome for Mobile - Settings > Developer Tools > [x] Enable USB Web debugging
- Device - Settings > Developer options > [x] USB debugging
- Connect Device to Computer
- Enable port forwarding on your computer by doing the following command belowC:\adb forward tcp:9222 localabstract:chrome_devtools_remote
Go to
http://localhost:9222
in Chrome on your Computer
TroubleShooting:
If you get
command not found
when trying to run ADB
, make sure Platform-Tools is in your path or just use the whole path to your SDK and run itC:\path-to-SDK\platform-tools\adb forward tcp:9222 localabstract:chrome_devtools_remote
If you get "
device not found
", then run adb kill-server
and then try again.
评论