diff options
| author | 2023-05-05 22:26:21 +0000 | |
|---|---|---|
| committer | 2023-05-05 22:26:21 +0000 | |
| commit | 5cd5d41d24bef605c3908254a281337dbf465ed6 (patch) | |
| tree | 422783dabf63e126b100bf1f267622b4dc21704b | |
| parent | 1588d4ac8db388e9b2cf8de2119f8ab6531661dc (diff) | |
| parent | 36a04ad2a1d06bb7e5a08691930e04fc516fbca0 (diff) | |
Merge "permission(core): Modify protection level for SUBSCRIBE_TO_KEYGUARD" into udc-dev
| -rw-r--r-- | core/res/AndroidManifest.xml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/core/res/AndroidManifest.xml b/core/res/AndroidManifest.xml index fefa79f65201..7e0a36d30771 100644 --- a/core/res/AndroidManifest.xml +++ b/core/res/AndroidManifest.xml @@ -4976,11 +4976,11 @@ android:protectionLevel="signature" /> <!-- Allows an application to subscribe to keyguard locked (i.e., showing) state. - <p>Protection level: internal|role - <p>Intended for use by ROLE_ASSISTANT only. + <p>Protection level: signature|role + <p>Intended for use by ROLE_ASSISTANT and signature apps only. --> <permission android:name="android.permission.SUBSCRIBE_TO_KEYGUARD_LOCKED_STATE" - android:protectionLevel="internal|role"/> + android:protectionLevel="signature|role"/> <!-- Must be required by a {@link android.service.autofill.AutofillService}, to ensure that only the system can bind to it. |