0

On my emulator , I am not getting internet. But I am able to access google maps. The internet connection is ON. I am using fedora 13 machine . I have checked the default browser in the deice , but then also am not getting internet. I am getting internet connection on my system. Also i was getting internet connectivity through default browser in the device till yesterday. how can I resolve this issue?

Ashish Augustine
  • 1,784
  • 4
  • 20
  • 50

2 Answers2

3

If your system has a internet connection then your emulator also has a connection too, so no need to extra setting for it, (Just check for Airoplanemode disable it display dialog for not internet connection still also Its load the pages).. And also try some URL in android default web browser..

user370305
  • 108,599
  • 23
  • 164
  • 151
0

Make sure you have the permission listed in your AndroidManifest.xml

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

See the permissions documentation for a complete list of permissions.

Without the permission declared, the sandbox will not let your app access the Internet.

Avram Lyon
  • 396
  • 2
  • 10
  • Here, I'm assuming that your app isn't getting internet access. If the problem is with built-in apps, then this certainly won't help you; but if Google Maps is working, there clearly isn't a complete lack of connectivity on the device. – Avram Lyon Dec 08 '11 at 05:26