Merge "Revert "Disable per-process app class to investigate"" into tm-dev

This commit is contained in:
TreeHugger Robot
2022-02-23 22:49:52 +00:00
committed by Android (Google) Code Review

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