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

Commit e897a4a2 authored by Jorge Ruesga's avatar Jorge Ruesga
Browse files

base: Add blacklist provider permission

Change-Id: I4febc2c0aa1a690d607b2a459e2d60d30ecf5abf
JIRA: CYAN-3727
Issue: https://jira.cyanogenmod.org/browse/CYAN-3727


Signed-off-by: default avatarJorge Ruesga <jorge@ruesga.com>
parent fac873d3
Loading
Loading
Loading
Loading
+30 −0
Original line number Diff line number Diff line
@@ -2545,6 +2545,36 @@
        android:description="@string/permdesc_accessNetworkConditions"
        android:protectionLevel="signature|system" />

    <!-- =============================================================== -->
    <!-- Permissions for accessing security data                         -->
    <!-- =============================================================== -->
    <eat-comment />

    <!-- Used for permissions that allow an application to access or configure
         the device security information.
         @hide This is not a third-party API (intended for system apps). -->
    <permission-group android:name="android.permission-group.SECURITY"
        android:label="@string/permgrouplab_security"
        android:icon="@drawable/perm_group_security"
        android:description="@string/permgroupdesc_security"
        android:priority="400"/>

    <!-- Allows an application to read the phone blacklist data.
         @hide This is not a third-party API (intended for system apps). -->
    <permission android:name="android.permission.READ_PHONE_BLACKLIST"
        android:permissionGroup="android.permission-group.SECURITY"
        android:protectionLevel="signature|system"
        android:label="@string/permlab_readPhoneBlacklist"
        android:description="@string/permdesc_readPhoneBlacklist" />

    <!-- Allows an application to change the phone blacklist data.
         @hide This is not a third-party API (intended for system apps). -->
    <permission android:name="android.permission.CHANGE_PHONE_BLACKLIST"
        android:permissionGroup="android.permission-group.SECURITY"
        android:protectionLevel="signature|system"
        android:label="@string/permlab_changePhoneBlacklist"
        android:description="@string/permdesc_changePhoneBlacklist" />

    <!-- The system process is explicitly the only one allowed to launch the
         confirmation UI for full backup/restore -->
    <uses-permission android:name="android.permission.CONFIRM_FULL_BACKUP"/>
+1.52 KiB
Loading image diff...
+1.25 KiB
Loading image diff...
+1.59 KiB
Loading image diff...
+1.72 KiB
Loading image diff...
Loading