Reputation: 20132
my emulator browser not connecting to internet? how to do the settings?
<application android:icon="@drawable/icon" android:label="@string/app_name">
<activity android:name=".reader"
android:label="@string/app_name">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
<category android:name="android.intent.category.BROWSABLE" />
</intent-filter>
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity>
</application>
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<supports-screens
android:smallScreens="true"
android:normalScreens="true"
android:largeScreens="true"
android:anyDensity="true" />
</manifest>
Upvotes: 0
Views: 1450
Reputation: 20132
I edited avd with value "GPS support= yes" and restarted the emulator. now working....
Upvotes: 1
Reputation: 1049
Follows following instruction 1. Firstly You check at your emulator that your emulator have Internet if not then 2. Go to setting and then 3. Go to wireless and network then 4. wi-fi setting and on it and 5. Save the setting and close the emulator again start and enjoy internet on your emulator.
Upvotes: 0
Reputation: 9479
You might have missed out <uses-permission android:name="android.permission.INTERNET" />
inside your manifest file.
Upvotes: 0