Are there anyways to programmatically proxy Android Webview requests within an application only? (I want all requests to be passed through an embedded proxy) All of the solutions i have found so far are system level and will change proxy settings for the whole android device, something i do not want.
Asked
Active
Viewed 941 times
5
-
1set Webview to load data from localhost – zapl Aug 28 '13 at 10:53
-
oh, how would i go about that? – Christopher Lawless Aug 28 '13 at 12:38
-
2It's not a real proxy but you could set the content to be sth like `http://localhost:8888/?url=http://www.google.com` and have a proxy like thing run on port 8888 that loads from given url-encoded address. – zapl Aug 28 '13 at 15:56
-
1Or you do: http://stackoverflow.com/questions/4488338/webview-android-proxy – zapl Aug 28 '13 at 16:05