Clear website cache Android Studio

After buying RocketWeb from codeCanyon everything is working fine but the website did load old cache data. I want to clear the cache of my website.

Solution 1: 
Make this value false then your webview cache will turn off. 

Solution 2: 
If solution 1 is not working then you can add this line manually, Only apply if solution 1 is not working. 

mBinding.webView.clearCache(true)
mBinding.webView.clearHistory()

Add this line of code here:

Leave a Reply