Skip to content
Snippets Groups Projects
Commit 843b10ae authored by Jan Sebechlebsky's avatar Jan Sebechlebsky Committed by Android Build Coastguard Worker
Browse files

Always launch BlockedAppStreamingActivity as SYSTEM user

With different user the activity will be blocked which results in
infinite recursive loop.

Bug: 328298904
Test: Manually reproduced bug with Exo and tested the bugfix
Test: atest ActivityBlockingTest
(cherry picked from https://googleplex-android-review.googlesource.com/q/commit:f44a53f962abc8af48d875c85da8a69eb3dfa23c)
Merged-In: I36761e7104418d41d22f97f82cef336833709060
Change-Id: I36761e7104418d41d22f97f82cef336833709060
parent ed34c64d
No related branches found
No related tags found
No related merge requests found
......@@ -1213,7 +1213,7 @@ final class VirtualDeviceImpl extends IVirtualDevice.Stub
mContext.startActivityAsUser(
intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK | Intent.FLAG_ACTIVITY_CLEAR_TASK),
ActivityOptions.makeBasic().setLaunchDisplayId(displayId).toBundle(),
mContext.getUser());
UserHandle.SYSTEM);
}
private void onSecureWindowShown(int displayId, int uid) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment