I\'m creating a WebView based Android app that enables the user to login onto a mobile operator. When I run the app the WebView opens the website but I get a message that th
@Darko.
CookieManager.getInstance()
is the CookieManager instance for your entire application. Hence, you enable or disable cookies for all the webviews in your application.
Normally it should work if your webview is already initialized: http://developer.android.com/reference/android/webkit/CookieManager.html#getInstance()
Maybe you call CookieManager.getInstance().setAcceptCookie(true);
before you initialize your webview.
Thanks,