Merge "Let virtualdevice.launchPendingIntent() to start BAL using its BAL permission" into tm-dev am: a207130f4c am: 305b401a14
Original change: https://googleplex-android-review.googlesource.com/c/platform/frameworks/base/+/18670488 Change-Id: I02195a63d9acd105bf13cd72bda4d1a6d606a9c9 Signed-off-by: Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
This commit is contained in:
@@ -241,6 +241,9 @@ final class VirtualDeviceImpl extends IVirtualDevice.Stub
|
||||
|
||||
private void sendPendingIntent(int displayId, PendingIntent pendingIntent)
|
||||
throws PendingIntent.CanceledException {
|
||||
final ActivityOptions options = ActivityOptions.makeBasic().setLaunchDisplayId(displayId);
|
||||
options.setPendingIntentBackgroundActivityLaunchAllowed(true);
|
||||
options.setPendingIntentBackgroundActivityLaunchAllowedByPermission(true);
|
||||
pendingIntent.send(
|
||||
mContext,
|
||||
/* code= */ 0,
|
||||
@@ -248,9 +251,7 @@ final class VirtualDeviceImpl extends IVirtualDevice.Stub
|
||||
/* onFinished= */ null,
|
||||
/* handler= */ null,
|
||||
/* requiredPermission= */ null,
|
||||
ActivityOptions.makeBasic()
|
||||
.setLaunchDisplayId(displayId)
|
||||
.toBundle());
|
||||
options.toBundle());
|
||||
}
|
||||
|
||||
@Override // Binder call
|
||||
|
||||
Reference in New Issue
Block a user