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

Commit af7ea999 authored by Jing Ji's avatar Jing Ji
Browse files

Fix regression with OverlayManagerPerfTest

Also fixed a regression with ActivityManagerAppExitInfoTest

Bug: 179054146
Bug: 178978839
Bug: 179052239
Test: atest OverlayManagerPerfTest
Test: atest ConfigChangeTests
Test: atest ActivityManagerAppExitInfoTest
Change-Id: I438e91f22bf5adea8b14ecac1295d3f32586aa33
parent dcd93977
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -4447,7 +4447,7 @@ public final class ProcessList {
            }

            app.getPkgList().forEachPackage(packageName -> {
                if (updateFrameworkRes && packagesToUpdate.contains(packageName)) {
                if (updateFrameworkRes || packagesToUpdate.contains(packageName)) {
                    try {
                        final ApplicationInfo ai = AppGlobals.getPackageManager()
                                .getApplicationInfo(packageName, STOCK_PM_FLAGS, app.userId);
+2 −0
Original line number Diff line number Diff line
@@ -623,6 +623,8 @@ final class ProcessProfileRecord {
            DebugUtils.printSizeValue(pw, mLastCachedSwapPss * 1024);
            pw.print(" lastRss=");
            DebugUtils.printSizeValue(pw, mLastRss * 1024);
            pw.println();
            pw.print(prefix);
            pw.print(" trimMemoryLevel=");
            pw.println(mTrimMemoryLevel);
            pw.println();