Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 933f4523 authored by Jonathan Klee's avatar Jonathan Klee
Browse files

Increase cache to 30Mb

The 10Mb are quicly reached actually when
playing a bit with AppLounge.
parent 41c3e0f2
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -111,7 +111,7 @@ object CommonUtilsModule {
    @Singleton
    @Provides
    fun provideCache(@ApplicationContext context: Context): Cache {
        val cacheSize = (10 * 1024 * 1024).toLong() // 10 MB
        val cacheSize = (30 * 1024 * 1024).toLong() // 30 MB
        return Cache(context.cacheDir, cacheSize)
    }