Showing posts with label emulator internet. Show all posts
Showing posts with label emulator internet. Show all posts

Wednesday, August 26, 2009

Proxy setting

To get the internet in emulator type the follow commands on sdk tools path .

// Proxy Settings

Open

Cd :\sdk\tools

adb shell



ls -l /data/data/com.android.providers.settings/databases/settings.db

sqlite3 /data/data/com.android.providers.settings/databases/settings.db

Open the databases

.databases

Show the tables


.tables

setting the proxy permission

insert into system values(99,'http_proxy','Server Address :Port Number');

insert into system values(99,'http_proxy','192.1.1.1:22');

or
insert into system values(101,'http_proxy','192.1.1.1:22');

Enjoy the Internet in Emulator