«`kotlin
import android.content.Context
import android.os.Build
import androidx.annotation.RequiresApi
@RequiresApi(Build.VERSION_CODES.LOLLIPOP)
fun clearApplicationCache(ctx: Context) {
ctx.cacheDir.deleteRecursively()
ctx.externalCacheDir?.deleteRecursively()
ctx.codeCacheDir.deleteRecursively()
}
«`