diff options
| author | 2014-10-17 10:22:26 -0700 | |
|---|---|---|
| committer | 2014-10-17 10:23:37 -0700 | |
| commit | 65d241b92db36e8f14d08efc6f35a91481b0d73d (patch) | |
| tree | d4c82101bf1deb14af2c8633e21650b6a3123604 | |
| parent | a89ac60e25eb77b4c605fc1a40c96416b199bea5 (diff) | |
Make READ_VOICEMAIL/WRITE_VOICEMAIL system permissions
Bug: 18020724
Change-Id: I5a0e5ef8a1e40ee23f4b132f5877b63a738e776e
| -rw-r--r-- | core/res/AndroidManifest.xml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/res/AndroidManifest.xml b/core/res/AndroidManifest.xml index 0767dbb43e48..f35b2e878519 100644 --- a/core/res/AndroidManifest.xml +++ b/core/res/AndroidManifest.xml @@ -679,14 +679,14 @@ <!-- Allows an application to modify and remove existing voicemails in the system --> <permission android:name="com.android.voicemail.permission.WRITE_VOICEMAIL" android:permissionGroup="android.permission-group.VOICEMAIL" - android:protectionLevel="dangerous" + android:protectionLevel="system|signature" android:label="@string/permlab_writeVoicemail" android:description="@string/permdesc_writeVoicemail" /> <!-- Allows an application to read voicemails in the system. --> <permission android:name="com.android.voicemail.permission.READ_VOICEMAIL" android:permissionGroup="android.permission-group.VOICEMAIL" - android:protectionLevel="dangerous" + android:protectionLevel="system|signature" android:label="@string/permlab_readVoicemail" android:description="@string/permdesc_readVoicemail" /> |