diff options
author | Svetoslav <svetoslavganov@google.com> | 2015-10-29 17:00:06 -0700 |
---|---|---|
committer | The Android Automerger <android-build@google.com> | 2015-11-02 13:21:05 -0800 |
commit | 4ff3b614ab73539763343e0981869c7ab5ee9979 (patch) | |
tree | bfdfbcf8946518e93deccd014d2d2c08bafe0740 | |
parent | e3e2c7038779ce839c40f6a70d65a6dcea49b289 (diff) | |
download | frameworks_base-4ff3b614ab73539763343e0981869c7ab5ee9979.zip frameworks_base-4ff3b614ab73539763343e0981869c7ab5ee9979.tar.gz frameworks_base-4ff3b614ab73539763343e0981869c7ab5ee9979.tar.bz2 |
Allow verifier to grant permissions
bug:25329324
Change-Id: I2ac01a983ad812df7725a0499a8d9b470a7ea481
-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 3eed013..08bccc1 100644 --- a/core/res/AndroidManifest.xml +++ b/core/res/AndroidManifest.xml @@ -2112,7 +2112,7 @@ <!-- Allows an application to grant specific permissions. @hide --> <permission android:name="android.permission.GRANT_RUNTIME_PERMISSIONS" - android:protectionLevel="signature|installer" /> + android:protectionLevel="signature|installer|verifier" /> <!-- Allows an app that has this permission and the permissions to install packages to request certain runtime permissions to be granted at installation. |