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

Commit a8abd64b authored by Treehugger Robot's avatar Treehugger Robot Committed by Automerger Merge Worker
Browse files

Merge "Override onTrimMemory to apply trimMemory in AppIconCacheManager" am: 8ac09942

parents 24835ea2 8ac09942
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -47,8 +47,8 @@ public class SettingsApplication extends Application {
    }

    @Override
    public void onLowMemory() {
        super.onLowMemory();
        AppIconCacheManager.getInstance().release();
    public void onTrimMemory(int level) {
        super.onTrimMemory(level);
        AppIconCacheManager.getInstance().trimMemory(level);
    }
}