Increases local video disk cache to 1GB

This commit is contained in:
Vitor Pamplona
2025-10-17 18:00:38 -04:00
parent b8d0f057c5
commit 97fc10d6ea

View File

@@ -34,7 +34,7 @@ import java.io.File
@SuppressLint("UnsafeOptInUsageError")
class VideoCache {
var exoPlayerCacheSize: Long = 150 * 1024 * 1024 // 150MB
var exoPlayerCacheSize: Long = 1000 * 1024 * 1024 // 1GB
var leastRecentlyUsedCacheEvictor = LeastRecentlyUsedCacheEvictor(exoPlayerCacheSize)