Blocking the WebView Cache

3

To elaborate a WebApp, and use a WebView to open a specific url within the app! But the app is caching everything, so if I make any changes to the site, the app does not "compute" this update because it reuses all information that is in the cache!

How to block this cache? Which, I believe, is being generated by WebView.

The WebApp platform is android.

    
asked by anonymous 15.09.2015 / 02:44

1 answer

2

Try to disable caching like this:

mWebView.getSettings().setAppCacheEnabled(false);  
    
15.09.2015 / 04:57