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"); 

Comments

Popular posts from this blog

php - Admin SDK -- get information about the group -

ruby on rails - one-to-many through referance table -

Python Error - TypeError: input expected at most 1 arguments, got 3 -