Proxy settings in android phone
Hi all, here i am going to demostrate about the proxy settings in android phone.
As 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.
to do this setting you must download SDK package from android
you need to check USB Debugging option in phones setting
and follow the step given below
As 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.
to do this setting you must download SDK package from android
you need to check USB Debugging option in phones setting
and follow the step given below
> adb shell
# sqlite3 /data/data/com.google.android.providers.settings/databases/settings.db
sqlite> INSERT INTO system VALUES(99,’http_proxy’, ‘proxy:port’);
sqlite>.exit
You can talk to settings.db for more information.
sqlite> SELECT * FROM system;
sqlite> .tables
sqlite> .databases
sqlite> .schema table_name
sqlite> more SQL expression to talk to the tables
Don’t forget the ‘;’ at the end of the SQL expression.
Comments
Post a Comment