Increasing video cache from 90 to 150MB

This commit is contained in:
Vitor Pamplona 2023-09-25 17:36:57 -04:00
parent 288d80d163
commit 69d7e82b71

View File

@ -12,7 +12,7 @@ import java.io.File
@UnstableApi object VideoCache {
var exoPlayerCacheSize: Long = 90 * 1024 * 1024 // 90MB
var exoPlayerCacheSize: Long = 150 * 1024 * 1024 // 90MB
var leastRecentlyUsedCacheEvictor = LeastRecentlyUsedCacheEvictor(exoPlayerCacheSize)