How do I set a proxy in Android phones?

前端 未结 7 409
故里飘歌
故里飘歌 2021-01-31 00:45

Am really wondering how to set a proxy server in android phone like [tattoo] in order to gain access in some private networks

any suggestion would be appreciated ...

7条回答
  •  北海茫月
    2021-01-31 01:10

    Finally i got what i want and here is the result :

    There is no UI for proxy settings for android web browser. But the android web browser will read the proxy settings in its settings database. Here is 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

    source: http://discuz-android.blogspot.com/2008/01/set-proxy-for-android-web-browser.html

提交回复
热议问题