I am trying to clear the cache stored in android application which uses cordova webview. I tried with cordovaWebView.clearCache(true); Also tried with
cordovaWebView.clearCache(true);
Simplest answer to this is
cordovaWebView.clearCache(true); android.webkit.CookieManager.getInstance().removeAllCookie();
cordovaWebView is the instance of Cordovawebview.
Use both in the event where you need to clear the cookie and cache.