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

Popular posts from this blog

magento2 - Magento 2 admin grid add filter to collection -

Android volley - avoid multiple requests of the same kind to the server? -

Combining PHP Registration and Login into one class with multiple functions in one PHP file -