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

Commit bc0c4bd0 authored by Adrian Roos's avatar Adrian Roos Committed by android-build-merger
Browse files

Merge \\"AppErrors: Fix bad flags printing in dropbox crash reports\\" into...

Merge \\"AppErrors: Fix bad flags printing in dropbox crash reports\\" into nyc-mr1-dev am: b4addbc2
am: 579f69dc

Change-Id: Idf13c3ee24c12cd65af5daf2f13b2073df9455a6
parents 0897f32e 579f69dc
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -13567,7 +13567,7 @@ public final class ActivityManagerService extends ActivityManagerNative
            sb.append("Process: ").append(processName).append("\n");
            int flags = process.info.flags;
            IPackageManager pm = AppGlobals.getPackageManager();
            sb.append("Flags: 0x").append(Integer.toString(flags, 16)).append("\n");
            sb.append("Flags: 0x").append(Integer.toHexString(flags)).append("\n");
            for (int ip=0; ip<process.pkgList.size(); ip++) {
                String pkg = process.pkgList.keyAt(ip);
                sb.append("Package: ").append(pkg);