I have an app with a WebView, which downloads videos and plays them in a VideoView.
To manage the downloads I use android's handy DownloadManager
API.
Unfortunately in some situations I need to use a proxy.
I have successfully set up the proxy for the WebView using reflection as detailed in this stackoverflow question, but I am not sure how I can set the DownloadManager
to use a proxy as well..
Is this possible? If not, what are my alternatives?
Thanks