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
You have to enable javascript and then getting instance of cookie manager accept cookie By using javascriptenable cookie gets stored
webView.getSettings().setJavaScriptEnabled(true); CookieManager.getInstance().setAcceptCookie(true);