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

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

Merge "Performance: SystemServer: Do not start Atlas Service."

parents 75e20b5d 781468e9
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -438,6 +438,7 @@ public final class SystemServer {
        boolean disableNetwork = SystemProperties.getBoolean("config.disable_network", false);
        boolean disableNetworkTime = SystemProperties.getBoolean("config.disable_networktime", false);
        boolean isEmulator = SystemProperties.get("ro.kernel.qemu").equals("1");
	boolean disableAtlas = SystemProperties.getBoolean("config.disable_atlas", true);

        try {
            Slog.i(TAG, "Reading configuration...");
@@ -927,7 +928,7 @@ public final class SystemServer {
                mSystemServiceManager.startService(DreamManagerService.class);
            }

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