How to access web in android browser in android emulator
I have set a proxy in android emulator. I am still not able to access Google in the android browser in android emulator. Can anybody tell me how to access Google in the android emulator?
I have set up the proxy like this
setting ->wireless and network setting->mobilenet开发者_如何学Cworks->accesspointnames->tekila
You should add -http-proxy <proxy>
as parameters when you launch the emulator.
If you are using Eclipse you can setup this by doing a right clic on your project Run > Run Configuration > Target > Additional Emulator Command Line Option.
If you launch the emulator by command line you can add the parameters as follow:
emulator -avd <avd_name> -http-proxy <proxy>
Cheers
精彩评论