From 68cad97819d554f672a963cc61604f4a515fe3aa Mon Sep 17 00:00:00 2001 From: Vitor Pamplona Date: Thu, 8 Aug 2024 11:51:35 -0400 Subject: [PATCH] Reducing the amount of CPU memory used for images to the default. --- amethyst/src/main/java/com/vitorpamplona/amethyst/Amethyst.kt | 1 - 1 file changed, 1 deletion(-) diff --git a/amethyst/src/main/java/com/vitorpamplona/amethyst/Amethyst.kt b/amethyst/src/main/java/com/vitorpamplona/amethyst/Amethyst.kt index dbfad52183..538daea60b 100644 --- a/amethyst/src/main/java/com/vitorpamplona/amethyst/Amethyst.kt +++ b/amethyst/src/main/java/com/vitorpamplona/amethyst/Amethyst.kt @@ -75,7 +75,6 @@ class Amethyst : Application() { val coilMemCache: MemoryCache by lazy { MemoryCache .Builder(this) - .maxSizePercent(0.40) // memory heavy app due to profile pics and videos. .build() }