-2

I found a beautiful android app and I want to see the source code I know the app is using webview to develop

1 Answers1

0

If you connect your phone via usb to a computer and use a browser's remote debugging tool, you can see where the webview is pointing to.

Then you can just go there in that browser and look at the source.

If you want to see the code as a mobile device sees it, you can also use:

view-source:http://domain.com

(See this question)

Community
  • 1
  • 1
code11
  • 1,721
  • 5
  • 25
  • 33
  • [link](https://developers.google.com/web/tools/chrome-devtools/remote-debugging/webviews) – Roman Kould Oct 11 '16 at 16:11
  • [here link is I want](https://developers.google.com/web/tools/chrome-devtools/remote-debugging/webviews) but the app is others so I cant add the code for debugging. What should i do? – Roman Kould Oct 11 '16 at 16:13
  • or can I just see what is the web link for that webview? – Roman Kould Oct 11 '16 at 16:15
  • correct, you shouldnt have to add code to see where the webview is pointing if you're remote debugging – code11 Oct 11 '16 at 16:22