So I'm reading in this link and it says we can use chrome for remote debugging an app which seeems great but they don't explain how to do it. When I click in the link they provide which has some android documentation, I just see java code. As a non java-developer I wonder how can I use remote debugger in chrome for ionic framework?
Asked
Active
Viewed 5,493 times
4
-
plug your phone into the pc, go to chrome. then type: chrome://inspect into the url bar. open your app on your phone. – letterman549 Sep 29 '15 at 06:31
-
hi @letterman549, thanks that worked great, if you can convert this comment into an answer I can upvote your answer, since comment don't receive points :) – Jeka Oct 05 '15 at 20:00
-
Glad it helped :) will do the old copy paste. – letterman549 Oct 05 '15 at 20:47
1 Answers
8
To access remote debugging of a webview on your phone, plug your phone into your pc and go to chrome. then type: chrome://inspect into the url bar. open your app on your phone and it should show your device on the inspect dashboard.

letterman549
- 311
- 2
- 16
-
-
1In case this doesn't work for someone, make sure adb server is running (go to [AndroidSDKInstall]/sdk/platform-tools and open a command prompt and run 'adb start-server') – babycakes Jan 05 '17 at 06:00
-
@babycakes I did it. Just like the answer said and your suggestion. I see my device in ht inspector. But when I launch the app, I don't see anything else in the inspector (console, network, etc...) nothing... – Jason Krs Apr 09 '18 at 13:01