W walmo Active Member Licensed User Longtime User Jan 17, 2022 #1 Hi Is there a way to clear the cache for webview in B4J , or delete the files it created. Even if there is a way to disable it like on android. Thank you
Hi Is there a way to clear the cache for webview in B4J , or delete the files it created. Even if there is a way to disable it like on android. Thank you
A anro New Member Jan 18, 2022 #2 walmo said: Hi Is there a way to clear the cache for webview in B4J , or delete the files it created. Even if there is a way to disable it like on android. Thank you Click to expand... Try adding this to the back of your URL when it is loaded into the webview. ?ClearCache=true webview1.loadurl("https://www.google.com?ClearCache=true") Upvote 0
walmo said: Hi Is there a way to clear the cache for webview in B4J , or delete the files it created. Even if there is a way to disable it like on android. Thank you Click to expand... Try adding this to the back of your URL when it is loaded into the webview. ?ClearCache=true webview1.loadurl("https://www.google.com?ClearCache=true")
W walmo Active Member Licensed User Longtime User Jan 18, 2022 #3 Very nice , working for me .. Thank you Upvote 0