diff options
-rw-r--r-- | cm/res/AndroidManifest.xml | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/cm/res/AndroidManifest.xml b/cm/res/AndroidManifest.xml index 70e0a73..af2f10b 100644 --- a/cm/res/AndroidManifest.xml +++ b/cm/res/AndroidManifest.xml @@ -42,7 +42,7 @@ android:description="@string/permdesc_modifyNetworkSettings" android:icon="@drawable/ic_launcher_cyanogenmod" androidprv:allowViaWhitelist="true" - android:protectionLevel="system|signature" /> + android:protectionLevel="signature|privileged" /> <!-- Allows an app to make changes to the interruption mode sound settings --> <permission android:name="cyanogenmod.permission.MODIFY_SOUND_SETTINGS" @@ -70,7 +70,7 @@ <permission android:name="cyanogenmod.permission.HARDWARE_ABSTRACTION_ACCESS" android:label="@string/permlab_useHardwareFramework" android:description="@string/permdesc_useHardwareFramework" - android:protectionLevel="system|signature" /> + android:protectionLevel="signature|privileged" /> <!-- Allows an application to write to CM system settings --> <permission android:name="cyanogenmod.permission.WRITE_SETTINGS" @@ -89,13 +89,13 @@ <permission android:name="cyanogenmod.permission.WRITE_SECURE_SETTINGS" android:label="@string/permlab_writeSecureSettings" android:description="@string/permdesc_writeSecureSettings" - android:protectionLevel="signature|system|development" /> + android:protectionLevel="signature|privileged|development" /> <!-- Allows an application to write alarms to the default alarm clock application <p>Not for use by third-party applications. --> <permission android:name="cyanogenmod.permission.WRITE_ALARMS" android:permissionGroup="android.permission-group.SYSTEM_CLOCK" - android:protectionLevel="system|signature" + android:protectionLevel="signature|privileged" android:label="@string/permlab_write_alarms" android:description="@string/permdesc_write_alarms"/> @@ -118,14 +118,14 @@ <permission android:name="cyanogenmod.permission.MANAGE_PERSISTENT_STORAGE" android:label="@string/permlab_managePersistentStorage" android:description="@string/permdesc_managePersistentStorage" - android:protectionLevel="system|signature" /> + android:protectionLevel="signature|privileged" /> <!-- Permission for accessing a provider of app suggestions <p>Not for use by third-party applications. --> <permission android:name="cyanogenmod.permission.ACCESS_APP_SUGGESTIONS" android:label="@string/permlab_accessAppSuggestions" android:description="@string/permdesc_accessAppSuggestions" - android:protectionLevel="signature|system|development" /> + android:protectionLevel="signature|privileged|development" /> <application android:process="system" android:persistent="true" |