During an attempt to bring an older android application into the modern world, I have come across the deprecated statement of:
websettings.setAppCacheEnabled(false)
What is the modern Androidx alternate?
Use this
webView.settings.cacheMode=WebSettings.LOAD_NO_CACHE
Refer : https://developer.android.com/reference/android/webkit/WebSettings