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
This commit is contained in:
Makoto Onuki
2022-02-17 18:34:27 +00:00
parent ba688138fb
commit ad558f99b8

View File

@@ -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";
}