How do I set a proxy on my Android browser?

I’ve connected my Android phone to my Wifi network at work, but they use a proxy and I cannot use my browser without setting the proxy on my browser. Is there any way I can do this?


The great thing about Android is that the operating system on your phone is open up to any tweaking you might want to do. unfortunately, there is no UI for proxy settings for Android web browser. Instead the Android web browser will read the proxy settings in its settings database.

Here are the instructions to enable the proxy in the android web browser.

  1. > adb shell
  2. # sqlite3 /data/data/com.google.android.providers.settings/databases/settings.db
  3. sqlite> INSERT INTO system VALUES(99,’http_proxy’, ‘proxy:port’);
  4. sqlite>.exit

You can talk to settings.db for more information.

  1. sqlite> SELECT * FROM system;
  2. sqlite> .tables
  3. sqlite> .databases
  4. sqlite> .schema table_name
  5. sqlite> any SQL expressions to talk to the tables

Give it a whirl and see how you get on. Once you have the proxy set up, you can visit The Joke Shop, Free People or any other website you want to go to.

3 thoughts on “How do I set a proxy on my Android browser?”

  1. i have a problem also with my android phone LG OPTIMUS ME… i cant connect to a wifi that uses proxy server… may u help me how to do those command line youve given? i mean what application or where or which part i need to write those command line… please help me;… :'(

Leave a Reply

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.