How to clear app data in android app using Kotlin?
I am trying to delete my app data programmatically using Kotlin as my programing language but did not find any solution.
I have a WebView and it is reloading my URL after a specified time period. After the specified time is over I want to delete my app data and reload my WebView to delete any stored cache or other files stored from the previous website visit.
What I tried so far
package com.technosoftkpk.y_view
import android.os.Bundle
import android.webkit.WebView
import...