diff options
author | Harsh Shandilya <msfjarvis@gmail.com> | 2019-10-27 00:14:42 +0530 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-10-27 00:14:42 +0530 |
commit | cdf45bc323bd21eeb6252c9d9b70a990f7b39b75 (patch) | |
tree | e23c97e6135b680fc83fa6d3a4905cb3a8f83f75 /app/src/main/res | |
parent | 2fcec8685b7d198d8f3cd3a5d5960cb633394fe5 (diff) |
Add setting to save OpenKeychain auth keyid (#554)
* Add setting to save OpenKeychain auth keyid
* Hide pref not disable
Co-Authored-By: Reagan Sanders <vexofp@gmail.com>
Signed-off-by: Harsh Shandilya <msfjarvis@gmail.com>
Diffstat (limited to 'app/src/main/res')
-rw-r--r-- | app/src/main/res/values/strings.xml | 1 | ||||
-rw-r--r-- | app/src/main/res/xml/preference.xml | 3 |
2 files changed, 4 insertions, 0 deletions
diff --git a/app/src/main/res/values/strings.xml b/app/src/main/res/values/strings.xml index ebb4b413..62e478e5 100644 --- a/app/src/main/res/values/strings.xml +++ b/app/src/main/res/values/strings.xml @@ -271,4 +271,5 @@ <string name="biometric_auth_title">Enable biometric authentication</string> <string name="biometric_auth_summary">When enabled, Password Store will prompt you for your fingerprint when launching the app</string> <string name="biometric_auth_summary_error">Fingerprint hardware not accessible or missing</string> + <string name="ssh_openkeystore_clear_keyid">Clear remembered OpenKeystore SSH Key ID</string> </resources> diff --git a/app/src/main/res/xml/preference.xml b/app/src/main/res/xml/preference.xml index 9124d218..b6d720a5 100644 --- a/app/src/main/res/xml/preference.xml +++ b/app/src/main/res/xml/preference.xml @@ -20,6 +20,9 @@ android:key="hotp_remember_clear_choice" android:title="@string/hotp_remember_clear_choice" /> <androidx.preference.Preference + android:key="ssh_openkeystore_clear_keyid" + android:title="@string/ssh_openkeystore_clear_keyid" /> + <androidx.preference.Preference android:key="ssh_see_key" android:title="@string/pref_ssh_see_key_title" /> <androidx.preference.Preference |