Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I want to to use the browser inside the Android emulator, and I want to use the proxy settings on my machine. How can I set this up?

Reading the very good Android manuals, they tell me that I should start Android using the following command:

emulator -avd myavd -http-proxy http://168.192.1.2:3300

But I am still not able to use the emulator browser. Please note that I am using the IP address for my proxy server.

What am I doing wrong?

share|improve this question

10 Answers

The simplest and the best way is to do the following: This has been done for Android Emulator 2.2

  1. Click on Menu
  2. Click on Settings
  3. Click on Wireless & Networks
  4. Go to Mobile Networks
  5. Go to Access Point Names
  6. Here you will Telkila Internet, click on it.
  7. In the Edit access point section, input the "proxy" and "port"
  8. Also provide the Username and Password, rest of the fields leave them blank.
share|improve this answer
Worked for me, and I probably wouldn't have figured it out otherwise. Thanks for posting:) – PhilDin Jun 23 '11 at 14:43
Your answer has been very helpful. Thanks! – Tomas Narros Jun 8 '12 at 7:33
Giving +1 ......., how to do this settings other android version? – Selvam R Apr 2 at 10:24

-http-proxy on Android Emulator

On Run Configuration> Android Application > App > Target > Additional Emulator Command Line Options: -http-proxy http://xx.xxx.xx.xx:8080

share|improve this answer

This will not help for the browser, but you can also define a proxy in your code to use with a HTTP client:

// proxy
private static final String PROXY = "123.123.123.123";
// proxy host
private static final HttpHost PROXY_HOST = new HttpHost(PROXY, 8080);
HttpParams httpParameters = new BasicHttpParams();
DefaultHttpClient httpClient = new DefaultHttpClient(httpParameters);
httpClient.getParams().setParameter(ConnRoutePNames.DEFAULT_PROXY, PROXY_HOST);
share|improve this answer
You should not put "127.0.0.1" for String PROXY. – Michaël Oct 16 '09 at 8:23

nothin of that worked i am using eclipse on windows 64-bit: do the folllowing steps... it worked for me: Window -> Preferences -> Android -> Launch -> Default Emulator Options -http-proxy="http://10.1.8.30:8080"

in your eclipse window

share|improve this answer

I have used Android Emulator 4.0.3 to test this android emulator proxy settings process. Please follow this addres for full details:

http://www.rahinur.com/android-development/android-emulator-proxy-settings.html

I think this is most useful for you.

share|improve this answer

For setting proxy server we need to set APNS setting. To do this:

  1. Go to Setting

  2. Go to wireless and networks

  3. Go to mobile networks

  4. Go to access point names. Use menu to add new apns

    Set Proxy = localhost

    Set Port = port that you are using to make proxy server, in my case it is 8989

    For setting Name and apn here is the link:

    According to your sim card you can see the table

share|improve this answer

I had no luck until I tried setting the environment variable http_proxy

http://developer.android.com/tools/help/emulator.html

"If the -http-proxy command is not supplied, the emulator looks up the http_proxy environment variable and automatically uses any value matching the format described above."

share|improve this answer

there's some explaination on google groups

I hope this will help you. Michaƫl

share|improve this answer

you have to make a dos file for accessing net from android..

android emulator proxy configuration

share|improve this answer
can you supply a dos file for this example? – toxicate20 Nov 27 '12 at 17:09

Having the AVD android emulator:

  1. Open the simulator ( "..\android-sdk\AVD Manager.exe")
  2. Go to Tools
  3. Go to Options
  4. On Proxy settings:

On the first field(HTTP Proxy Server) set only the IP address where is your proxy (XXX.XXX.XXX.XXX) on the second field set the port of your proxy (example: 8080)

Then, click Close on the window and start the emulator

---- Added ... Then the alex steps works on my case:

Click on Menu
Click on Settings
Click on Wireless & Networks
Go to Mobile Networks
Go to Access Point Names
Here you will Telkila Internet (or other name), click on it.
In the Edit access point section, input the "proxy" and "port"
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.