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

Commit 0ae4a5d5 authored by Linux Build Service Account's avatar Linux Build Service Account Committed by Gerrit - the friendly Code Review server
Browse files

Merge "SystemServer: Do not start Atlas Service on lowram devices."

parents 4c9cbfa8 2c6f9dcf
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -219,6 +219,7 @@ class ServerThread {
        boolean disableSystemUI = SystemProperties.getBoolean("config.disable_systemui", false);
        boolean disableNonCoreServices = SystemProperties.getBoolean("config.disable_noncore", false);
        boolean disableNetwork = SystemProperties.getBoolean("config.disable_network", false);
        boolean disableAtlas = SystemProperties.getBoolean("config.disable_atlas", false);

        try {
            Slog.i(TAG, "Display Manager");
@@ -823,7 +824,7 @@ class ServerThread {
                }
            }

            if (!disableNonCoreServices) {
            if (!disableNonCoreServices && !disableAtlas) {
                try {
                    Slog.i(TAG, "Assets Atlas Service");
                    atlas = new AssetAtlasService(context);