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

Commit fff9ec21 authored by Florian Mayer's avatar Florian Mayer
Browse files

Use isProfileable rather than privateFlagsExt.

Change-Id: Ie2bade7355e6b0754cf2a2f42bf96e050d399895
parent 26d4d356
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1918,7 +1918,7 @@ public final class ProcessList {
            if ((app.info.privateFlags & ApplicationInfo.PRIVATE_FLAG_PROFILEABLE_BY_SHELL) != 0) {
                runtimeFlags |= Zygote.PROFILE_FROM_SHELL;
            }
            if ((app.info.privateFlagsExt & ApplicationInfo.PRIVATE_FLAG_EXT_PROFILEABLE) != 0) {
            if (app.info.isProfileable()) {
                runtimeFlags |= Zygote.PROFILEABLE;
            }
            if ("1".equals(SystemProperties.get("debug.checkjni"))) {