How to unset http.proxy in android -
we can set system proxy
system.setproperty("http.proxyhost", host); system.setproperty("http.proxyport", port);
how unset system proxy?
you can use clearproperty
system.clearproperty("http.proxyhost");
we can set system proxy
system.setproperty("http.proxyhost", host); system.setproperty("http.proxyport", port);
how unset system proxy?
you can use clearproperty
system.clearproperty("http.proxyhost");
Comments
Post a Comment