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

Commit ad558f99 authored by Makoto Onuki's avatar Makoto Onuki
Browse files

Revert "Disable per-process app class to investigate"

Revert "Disable per-process app class to investigate (disabling CTS)"

Revert submission 16804724-disable-per-proc-app

Reason for revert: The revert has reached weekly. Now I'll revert it to see what change it made.
Reverted Changes:
I87f16857b:Disable per-process app class to investigate
I87f16857b:Disable per-process app class to investigate (disa...

Change-Id: Ib84035c7819acc347e0bbba8bfada66300778c63
Test: treehugger
Bug: 185177290
parent ba688138
Loading
Loading
Loading
Loading
+4 −6
Original line number Diff line number Diff line
@@ -1377,18 +1377,16 @@ public final class LoadedApk {
                    Slog.wtf(TAG, "App instance already created for package=" + mPackageName
                            + " instance=" + cached);
                }
                // TODO Return the cached one, unless it's for the wrong user?
                // TODO Return the cached one, unles it's for the wrong user?
                // For now, we just add WTF checks.
            }
        }

        Application app = null;

        // Temporarily disable per-process app class to investigate b/185177290
//        final String myProcessName = Process.myProcessName();
//        String appClass = mApplicationInfo.getCustomApplicationClassNameForProcess(
//                myProcessName);
        String appClass = mApplicationInfo.className;
        final String myProcessName = Process.myProcessName();
        String appClass = mApplicationInfo.getCustomApplicationClassNameForProcess(
                myProcessName);
        if (forceDefaultAppClass || (appClass == null)) {
            appClass = "android.app.Application";
        }