diff options
author | Daniel Micay <danielmicay@gmail.com> | 2015-06-27 12:39:17 -0400 |
---|---|---|
committer | Wolfgang Wiedmeyer <wolfgit@wiedmeyer.de> | 2016-12-16 20:00:29 +0100 |
commit | 1c224e1186090db1a617eafe4c492992a869b427 (patch) | |
tree | b1e19b0719e185f298223aad0c6de1bd3a4d8174 /res/xml | |
parent | da369854affb579124f6f258e1cb7068b3ee7892 (diff) | |
download | packages_apps_Settings-1c224e1186090db1a617eafe4c492992a869b427.zip packages_apps_Settings-1c224e1186090db1a617eafe4c492992a869b427.tar.gz packages_apps_Settings-1c224e1186090db1a617eafe4c492992a869b427.tar.bz2 |
support replacing a separate encryption password
Diffstat (limited to 'res/xml')
-rw-r--r-- | res/xml/security_settings_encrypted.xml | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/res/xml/security_settings_encrypted.xml b/res/xml/security_settings_encrypted.xml index f05bad5..4a54788 100644 --- a/res/xml/security_settings_encrypted.xml +++ b/res/xml/security_settings_encrypted.xml @@ -18,7 +18,7 @@ android:title="@string/security_settings_title"> <PreferenceCategory - android:key="security_category" + android:key="encryption_category" android:title="@string/crypt_keeper_settings_title"> <Preference @@ -37,6 +37,16 @@ android:targetClass="com.android.settings.ChooseEncryptionPassword" /> </Preference> + <Preference + android:key="crypt_keeper_replace_password" + android:title="@string/crypt_keeper_replace_password_title" + android:summary="@string/crypt_keeper_replace_password_summary"> + + <intent android:action="android.intent.action.MAIN" + android:targetPackage="com.android.settings" + android:targetClass="com.android.settings.ReplaceEncryptionPassword" /> + </Preference> + </PreferenceCategory> |