Archos 101 internet tablet: Activate WLAN HTTP proxy settings in Android WebView


Since firmware version 2.1.8 the Archos 101 internet tablet supports HTTP proxy settings. The proxy settings can be configured under “Settings > Wireless & network > wifi proxy settings”.

To enable the HTTP proxy settings in a WebView one has to call WebView.enablePlatformNotifications() in the Activity’s onCreate() method:

public class YourActivity extends Activity {
  @Override
  public void onCreate(Bundle savedInstanceState) {
    WebView.enablePlatformNotifications();
    [...]
  }
}

2 responses to “Archos 101 internet tablet: Activate WLAN HTTP proxy settings in Android WebView”

Leave a Reply

Your email address will not be published. Required fields are marked *