diff options
author | Rubin Xu <rubinxu@google.com> | 2021-02-02 22:59:04 +0000 |
---|---|---|
committer | Rubin Xu <rubinxu@google.com> | 2021-02-12 21:35:34 +0000 |
commit | 3b50d2808115edb030a97ee220095dfe977b87ae (patch) | |
tree | 4af50f9e1cf76941462c2f32985663130753711a /core/res | |
parent | 7ce00e0a16036e5079a8f861b1a6787bd85a5644 (diff) |
Add KeyChain Test API for the credential manager
(Cut down version)
* Add permission to manage credential
management app, which is to be used in
CTS tests
Bug: 179180345
Test: atest android.devicepolicy.cts.CredentialManagementAppTest
Change-Id: I8487ebc13758a31639d55c8e380faa51d1cfd843
Merged-In: I8487ebc13758a31639d55c8e380faa51d1cfd843
Diffstat (limited to 'core/res')
-rw-r--r-- | core/res/AndroidManifest.xml | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/core/res/AndroidManifest.xml b/core/res/AndroidManifest.xml index a668e8e6dd0f..46d6dca554e2 100644 --- a/core/res/AndroidManifest.xml +++ b/core/res/AndroidManifest.xml @@ -3054,6 +3054,11 @@ <permission android:name="android.permission.CHANGE_OVERLAY_PACKAGES" android:protectionLevel="signature|privileged" /> + <!-- Allows an application to set, update and remove the credential management app. + @hide --> + <permission android:name="android.permission.MANAGE_CREDENTIAL_MANAGEMENT_APP" + android:protectionLevel="signature" /> + <!-- ========================================= --> <!-- Permissions for special development tools --> <!-- ========================================= --> |