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

Commit fb95ec4d authored by Makoto Onuki's avatar Makoto Onuki Committed by android-build-merger
Browse files

Merge "Add a check to investigate b/37893215." into oc-dev am: bf3423a9

am: 0fd64da2

Change-Id: I81299b9a3610c205a9de4b2df248c76c5dd2908c
parents 066fdf5d 0fd64da2
Loading
Loading
Loading
Loading
+9 −0
Original line number Diff line number Diff line
@@ -1357,6 +1357,15 @@ public class ActivityStackSupervisor extends ConfigurationContainer implements D
        if (mKeyguardController.isKeyguardLocked()) {
            r.notifyUnknownVisibilityLaunched();
        }
        final int applicationInfoUid =
                (r.info.applicationInfo != null) ? r.info.applicationInfo.uid : -1;
        if ((r.userId != app.userId) || (r.appInfo.uid != applicationInfoUid)) {
            Slog.wtf(TAG,
                    "User ID for activity changing for " + r
                            + " appInfo.uid=" + r.appInfo.uid
                            + " info.ai.uid=" + applicationInfoUid
                            + " old=" + r.app + " new=" + app);
        }

        r.app = app;
        app.waitingToKill = null;