How To Access Google Scholar Via Android Webview
My current Android Application uses a WebView to allow users to search for Scientific Journals (articles). When I try to browse to Google Scholar I receive a screen that says We're
Solution 1:
Clear the cache and cookies for the webview and try again.
CookieSyncManager.createInstance(this);
CookieManagercookieManager= CookieManager.getInstance();
cookieManager.removeAllCookie();
For Lollypop and above:
removeAllCookies(ValueCallback)
This topic is discussed here in google forum
Note:
QS already fixed the problem with my comment, i written this answer to help some one who faces this issue.
Post a Comment for "How To Access Google Scholar Via Android Webview"