Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 88fb9650 authored by fafaisland's avatar fafaisland
Browse files

Add READ_ALL_VOICEMAIL permission in the core

Bug:15695227

Change-Id: I96bebcd949293679d938b2ec290820d4ed9035fa
parent 585fc71e
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -92,6 +92,7 @@ package android {
    field public static final java.lang.String NFC = "android.permission.NFC";
    field public static final deprecated java.lang.String PERSISTENT_ACTIVITY = "android.permission.PERSISTENT_ACTIVITY";
    field public static final java.lang.String PROCESS_OUTGOING_CALLS = "android.permission.PROCESS_OUTGOING_CALLS";
    field public static final java.lang.String READ_ALL_VOICEMAIL = "com.android.voicemail.permission.READ_ALL_VOICEMAIL";
    field public static final java.lang.String READ_CALENDAR = "android.permission.READ_CALENDAR";
    field public static final java.lang.String READ_CALL_LOG = "android.permission.READ_CALL_LOG";
    field public static final java.lang.String READ_CONTACTS = "android.permission.READ_CONTACTS";
+7 −0
Original line number Diff line number Diff line
@@ -636,6 +636,13 @@
        android:label="@string/permlab_addVoicemail"
        android:description="@string/permdesc_addVoicemail" />

    <!-- Allows an application to read all the voicemails in the system. -->
    <permission android:name="com.android.voicemail.permission.READ_ALL_VOICEMAIL"
        android:permissionGroup="android.permission-group.VOICEMAIL"
        android:protectionLevel="dangerous"
        android:label="@string/permlab_readAllVoicemail"
        android:description="@string/permdesc_readAllVoicemail" />

    <!-- =============================================== -->
    <!-- Permissions for enabling accessibility features -->
    <!-- =============================================== -->
+7 −0
Original line number Diff line number Diff line
@@ -2964,6 +2964,13 @@
    <string name="permdesc_addVoicemail">Allows the app to add messages
      to your voicemail inbox.</string>

    <!-- Title of an application permission, listed so the user can choose whether
        they want to allow the application to do this. [CHAR LIMIT=NONE] -->
    <string name="permlab_readAllVoicemail">read all voicemail</string>
    <!-- Description of an application permission, listed so the user can choose whether
        they want to allow the application to do this. [CHAR LIMIT=NONE] -->
    <string name="permdesc_readAllVoicemail">Allows the app to read all your voicemails.</string>

    <!-- Title of an application permission, listed so the user can choose whether
        they want to allow the application to do this. -->
    <string name="permlab_writeGeolocationPermissions">modify Browser geolocation permissions</string>