Merge "Skip clipboard access toasts for VirtualDevice owner app" into udc-dev

This commit is contained in:
Antony Sargent
2023-05-10 01:14:20 +00:00
committed by Android (Google) Code Review

View File

@@ -1389,6 +1389,11 @@ public class ClipboardService extends SystemService {
callingPackage) == PackageManager.PERMISSION_GRANTED) {
return;
}
// Don't notify if this access is coming from the privileged app which owns the device.
if (clipboard.deviceId != DEVICE_ID_DEFAULT && mVdmInternal.getDeviceOwnerUid(
clipboard.deviceId) == uid) {
return;
}
// Don't notify if already notified for this uid and clip.
if (clipboard.mNotifiedUids.get(uid)) {
return;