Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@ramingar
Created April 27, 2022 11:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ramingar/bdf1eeaa21dcd02817e8ce7b7fd14ea1 to your computer and use it in GitHub Desktop.
Save ramingar/bdf1eeaa21dcd02817e8ce7b7fd14ea1 to your computer and use it in GitHub Desktop.
Debug Android Chrome Tabs from PC #adb #android #debug
- Conecta USB Debugging en android
- Conecta el móvil al pc por USB
- Instala adb (recomendado el adb de la página de android)
- Ejecuta `adb devices` (esto arranca y trata de enlazar con el dispositivo)
- En el pc ve a `chrome://inspect/#devices`
- Ahí debería aparecer tu móvil y el listado de tabs de chrome (del móvil)
Si el ordenador se conecta al dispositivo pero no ves las tabs de chrome, haz esto:
```
adb forward tcp:9222 localabstract:chrome_devtools_remote
```
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment