In a response to my native Webview, I can give HTML for rendering offline, but I also want it to load css and js files offline, and also handle any http traffic offline.
I have a couple of ideas so far: using something like https://github.com/remy/inliner to release all the dependency of the site or install a proxy server that sees that the http request was made from Webview, and then processes it using native code.
What is an easy way to configure proxies for Webview? I found https://github.com/marcuswestin/WebViewProxy and am going to study it, but I really would like to find something cross platform and have already overcome the native reaction.
source
share