From 484ca8301c83ab3c51325ef36478f3439c91ae30 Mon Sep 17 00:00:00 2001 From: yyalan Date: Tue, 25 Apr 2023 17:07:27 +0100 Subject: [PATCH] [Media Projection] Limit AppSelector launch Limit the launch of AppSelector only to MANAGE_MEDIA_PROJECTION. Disable export. Fixes: 279189182 Test: manual Change-Id: I106987452e097dbe24d8291678bc98462ac8f97e --- packages/SystemUI/AndroidManifest.xml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/packages/SystemUI/AndroidManifest.xml b/packages/SystemUI/AndroidManifest.xml index 4652ef195a0c2..300ec91ca490d 100644 --- a/packages/SystemUI/AndroidManifest.xml +++ b/packages/SystemUI/AndroidManifest.xml @@ -695,7 +695,9 @@ android:relinquishTaskIdentity="true" android:configChanges= "screenSize|smallestScreenSize|screenLayout|orientation|keyboard|keyboardHidden" - android:visibleToInstantApps="true"/> + android:visibleToInstantApps="true" + android:exported="false" + android:permission="android.permission.MANAGE_MEDIA_PROJECTION"/>