diff options
author | Julius D'souza <jdsouza@google.com> | 2020-09-22 12:52:15 -0700 |
---|---|---|
committer | Julius D'Souza <jdsouza@google.com> | 2021-01-28 17:15:43 -0800 |
commit | 1bed1e56ca7502a2f5a93cb0902a2bcb618afd5a (patch) | |
tree | 8f4387872e82ee76d0ac823cc6e9a54616de83c3 | |
parent | 7bbf421612f98031f7cb3e97155dd0c853b9ae3b (diff) |
Add setup usage for ACCESS_KEYGUARD_SECURE_STORAGE.
The SET_INITIAL_LOCK permission takes the "signature|setup" protection
level. Replicate this for secure storage access as this is an implicit
requirement.
Bug: 153726356
Test: N/A
Signed-off-by: Julius D'Souza <jdsouza@google.com>
Change-Id: If03cbf54d69125ee262a0f6ba7a7e11744a442de
Merged-In: If03cbf54d69125ee262a0f6ba7a7e11744a442de
-rw-r--r-- | core/res/AndroidManifest.xml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/res/AndroidManifest.xml b/core/res/AndroidManifest.xml index 24dabfc02454..a668e8e6dd0f 100644 --- a/core/res/AndroidManifest.xml +++ b/core/res/AndroidManifest.xml @@ -4507,7 +4507,7 @@ <!-- Allows access to keyguard secure storage. Only allowed for system processes. @hide --> <permission android:name="android.permission.ACCESS_KEYGUARD_SECURE_STORAGE" - android:protectionLevel="signature" /> + android:protectionLevel="signature|setup" /> <!-- Allows applications to set the initial lockscreen state. <p>Not for use by third-party applications. @hide --> |