refresh - How to clear the local storage and session storage in Webview Chrome App? -
i developing chrome app using webview(https://developer.chrome.com/apps/tags/webview). cleared cache using (https://developer.chrome.com/apps/tags/webview#type-cleardataoptions) webview url refreshing takes 5 10 mins.do have idea on this?
i tried this:
var cleardatatype = { appcache: true, cache: true, // remove entire cache. cookies: true, } webview.cleardata({ since: 0 }, cleardatatype, function() { // reload webview after clearing browsing data. });
Comments
Post a Comment