Inspecting Chrome devices automatically resumes / restarts

I am currently using chromes fantastic Inspect Devices to debug my phone call application.

However, every time I create an application and deploy it to my phone, I get the following message:

Disconnected from the target, etc.

enter image description here

Is it possible for Chrome to reboot, so I don't need to open

Settings -> More Tools -> Inspect Devices

+5
source share
1 answer

As far as I know, at the moment this can only be done on the reload page. It will reload the code (HTML, js, CSS), but the WebView history will not be cleared. By this I mean that if your application starts with " http: // start " and you are currently located at the URL " http: // a / b " and restart, you will now be on " http: // start ", but clicking on the" Back "button will not stop the application, you will be redirected to" http: // a / b ". If this is not a problem, then relaod is your solution. Best wishes.

-1
source

All Articles