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

Commit 4f05c091 authored by Olivier Gaillard's avatar Olivier Gaillard
Browse files

Update the dropbox tag for system app.

Also include external system apps to system app. It was the previous
behavior before the external system app partition was added.

Test: unit tests are passing

Change-Id: Ie11633340fedd9fbcbd6b5e07caecb55d6d64643
parent 0aea9054
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -8755,7 +8755,7 @@ public class ActivityManagerService extends IActivityManager.Stub
    private static String processClass(ProcessRecord process) {
        if (process == null || process.getPid() == MY_PID) {
            return "system_server";
        } else if ((process.info.flags & ApplicationInfo.FLAG_SYSTEM) != 0) {
        } else if (process.info.isSystemApp() || process.info.isSystemExt()) {
            return "system_app";
        } else {
            return "data_app";