Search code examples
androidandroid-emulator

No internet on Android emulator - why and how to fix?


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


Solution

  • 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