Search code examples
androidandroid-websettings

Websettings.SetAppCacheEnabled deprecated, what to use instead?


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?


Solution

  • Use this

    webView.settings.cacheMode=WebSettings.LOAD_NO_CACHE

    Refer : https://developer.android.com/reference/android/webkit/WebSettings