106

I am trying to use internet with the Android emulator, but with no success. Any ideas?

4
  • 4
    What exactly are you trying to do? Use the browser or other applications on the emulator, or use internet connections in your own application? Commented Feb 5, 2010 at 14:12
  • Try to accept some answers, you and they will get reputation Commented Mar 4, 2010 at 10:47
  • 1
    This question has an answer that worked for a lot of folks: stackoverflow.com/questions/2039964/… Commented Feb 15, 2011 at 22:15
  • I have answered below with URL which has more details! Commented Aug 31, 2011 at 23:44

9 Answers 9

111

In order to use internet on emulator if you are setting behind a proxy server perform the following steps:

  1. Go to settings->Wireless & networks->mobile networks->Access Point Names.

  2. Press menu button. an option menu will appear.

  3. from the option menu select New APN.

  4. Click on Name. provide name to apn say My APN.

  5. Click on APN. Enter www.

  6. Click on Proxy. enter your proxy server IP. you can get it from internet explorers internet options menu.

  7. click on Port. enter port number in my case it was 8080. you can get it from internet explorers internet options menu.

  8. Click on User-name. provide user-name in format domain\user-name. generally it is your systems login.

  9. Click on password. provide your systems password.

  10. press menu button again. an option menu will appear.

  11. press save. try n run your browser.

Sign up to request clarification or add additional context in comments.

12 Comments

Not woking.. . .
It works for me!! Thanks a lot! The APN I had been trying to use is set to default "internet", but it turns out you need the value to be "www".
It worked me but without supplying username and password, I guess it depends on the network infrastructure. Thanks!
+1 works for with supplying username and password and yes it depends on network infrastructure
Works fine. I had to restart the emulator though
|
35

If by "use internet", you mean you can not access the internet from an activity while testing on the emulator, make sure you have set the internet permission in your AndroidManifest.xml

<uses-permission android:name="android.permission.INTERNET" /> 

If you are using the web browser, refer to Donal's post

Comments

34

If you are using eclipse try:

Window > Preferences > Android > Launch

Default emulator options: -dns-server 8.8.8.8,8.8.4.4

3 Comments

We are not using eclipse anymore. We are using Android Studio? How to do this on Android Studio?
command line: emulator -avd Pixel_C_API_26 -dns-server 8.8.8.8,8.8.4.4
adding -dns-server 8.8.8.8,8.8.4.4 to my emulator command line solved the issue for me. Android had no internet before, now it has. Running on Win10. I'm puzzled why that command line argument was necessary though?
18

Try launching the Emulator from the command line as follows:

emulator -verbose -avd <AVD name> 

This will give you detailed output and may show the error that's preventing the emulator from connecting to the Internet.

Comments

4

Check your internet settings, firewalls and such may be blocking it, I know when I was working on it in college they were blocking the port number but I've never had any trouble on my home machines

1 Comment

what port is it?
3

If you run into this problem and are working with a non-Windows/Mac OS (Ubuntu in my case), try starting the emulator by itself in Android SDK and AVD Manager then running your application.

Comments

1

The easiest way is to follow these steps:

  1. run android emulator 1.5
  2. open up the menu
  3. go to settings
  4. wireless settings(first block) and right at the bottom turn off airplane mode.

By now you would've seen on top 3g and your established connection.

Comments

0

on OSX, Little Snitch was automatically denying any connection to Eclipse (and the emulator). Allow connections in Little Snitch, you have to go into Little Snitch's rules

Comments

-2

Allow the ADB to access the network by opening it on the firewall

If you are using winvista and above, go to Windows Advance Firewall under Administrative tool in Control Panel and enable it from there

3 Comments

this image does not exist
downvoted until image is restored.
down voted because image is not available.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.