diff options
| author | 2021-01-21 17:07:20 +0000 | |
|---|---|---|
| committer | 2021-01-21 17:07:20 +0000 | |
| commit | 0a80905457478e0f7d737ce22026372da3f26e02 (patch) | |
| tree | 0c11b736934b8459556b8465ec7983e85508fa7a | |
| parent | 9765788d7d3dc15e601479affc1ff1357ef687d1 (diff) | |
| parent | 5e390e7998f4aba46c13b1566cdfb8152ee40f0b (diff) | |
Merge "[Attempt #2] Add privileged to BROADCAST_CLOSE_SYSTEM_DIALOGS"
| -rw-r--r-- | core/res/AndroidManifest.xml | 2 | ||||
| -rw-r--r-- | data/etc/com.android.launcher3.xml | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/core/res/AndroidManifest.xml b/core/res/AndroidManifest.xml index 76acc0031b94..1897a7e57d7d 100644 --- a/core/res/AndroidManifest.xml +++ b/core/res/AndroidManifest.xml @@ -4336,7 +4336,7 @@ <p>Not for use by third-party applications. --> <permission android:name="android.permission.BROADCAST_CLOSE_SYSTEM_DIALOGS" - android:protectionLevel="signature|recents" /> + android:protectionLevel="signature|privileged|recents" /> <uses-permission android:name="android.permission.BROADCAST_CLOSE_SYSTEM_DIALOGS" /> <!-- Allows an application to broadcast a notification that an application diff --git a/data/etc/com.android.launcher3.xml b/data/etc/com.android.launcher3.xml index 17d614e3409c..99c38dbe6ac9 100644 --- a/data/etc/com.android.launcher3.xml +++ b/data/etc/com.android.launcher3.xml @@ -20,5 +20,6 @@ <permission name="android.permission.CONTROL_REMOTE_APP_TRANSITION_ANIMATIONS"/> <permission name="android.permission.GET_ACCOUNTS_PRIVILEGED"/> <permission name="android.permission.WRITE_SECURE_SETTINGS"/> + <permission name="android.permission.BROADCAST_CLOSE_SYSTEM_DIALOGS"/> </privapp-permissions> </permissions> |