Created
April 27, 2022 11:04
-
-
Save ramingar/bdf1eeaa21dcd02817e8ce7b7fd14ea1 to your computer and use it in GitHub Desktop.
Debug Android Chrome Tabs from PC #adb #android #debug
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
- 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