tags:

views:

632

answers:

2

Hi,

i have used below steps for setup the my emulator

1.C:\Program Files\android-sdk-windows\tools>adb shell 2. # sqlite3 /data/data/com.google.android.providers.settings/databases/settings.db 3. sqlite> INSERT INTO system VALUES(99,’http_proxy', '10.10.8.1:8080');

after that i closed adb shell command prompt and my emulator. and then opened my emulator but webbrowser is not opening any page(web page not available messaage) .

Please any one tell me the solution for this problem. is any other way to connect net in android emulator?

Regards, Jeyavel N

A: 

If you need to use a proxy, you can launch the emulator from the command line like this:

emulator -http-proxy <<your proxy here>> -avd <<emulator-name>>
elevine
This is shaky at best. I've had a lot of problems with this in 1.5 and 1.6, and I know others have as well. It would be really nice if Google could get the network stack of the emulator to be a little more robust.
MattC
A: 
Ramps