emulator browser not connecting to internet
        Posted  
        
            by 
                vnshetty
            
        on Stack Overflow
        
        See other posts from Stack Overflow
        
            or by vnshetty
        
        
        
        Published on 2011-03-14T07:57:46Z
        Indexed on 
            2011/03/14
            8:10 UTC
        
        
        Read the original article
        Hit count: 347
        
android
|webbrowser
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>  
© Stack Overflow or respective owner