summaryrefslogtreecommitdiff
path: root/app/src
diff options
context:
space:
mode:
authorHarsh Shandilya <msfjarvis@gmail.com>2019-10-27 18:20:29 +0530
committerHarsh Shandilya <msfjarvis@gmail.com>2019-10-27 18:21:19 +0530
commit5df7be10b5f30dce68a23eb55f1dae9edc0263c0 (patch)
tree9c88ce54016c3be5c6d790eff74f44e24ee56b93 /app/src
parentcdf45bc323bd21eeb6252c9d9b70a990f7b39b75 (diff)
Authenticator: Allow using PIN/password/pattern as fallbacks
Signed-off-by: Harsh Shandilya <msfjarvis@gmail.com>
Diffstat (limited to 'app/src')
-rw-r--r--app/src/main/java/com/zeapo/pwdstore/utils/auth/Authenticator.kt2
-rw-r--r--app/src/main/res/values/strings.xml1
2 files changed, 1 insertions, 2 deletions
diff --git a/app/src/main/java/com/zeapo/pwdstore/utils/auth/Authenticator.kt b/app/src/main/java/com/zeapo/pwdstore/utils/auth/Authenticator.kt
index 6e7f82d7..71e5df54 100644
--- a/app/src/main/java/com/zeapo/pwdstore/utils/auth/Authenticator.kt
+++ b/app/src/main/java/com/zeapo/pwdstore/utils/auth/Authenticator.kt
@@ -47,7 +47,7 @@ internal class Authenticator(
private val promptInfo = BiometricPrompt.PromptInfo.Builder()
.setTitle(fragmentActivity.getString(R.string.biometric_prompt_title))
- .setNegativeButtonText(fragmentActivity.getString(R.string.biometric_prompt_negative_text))
+ .setDeviceCredentialAllowed(true)
.build()
fun authenticate() {
diff --git a/app/src/main/res/values/strings.xml b/app/src/main/res/values/strings.xml
index 62e478e5..0c8950e6 100644
--- a/app/src/main/res/values/strings.xml
+++ b/app/src/main/res/values/strings.xml
@@ -264,7 +264,6 @@
<string name="sdcard_root_warning_message">You have selected the root of your sdcard for the store. This is extremely dangerous and you will lose your data as its content will, eventually, be deleted</string>
<string name="git_abort_and_push_title">Abort and Push</string>
<string name="biometric_prompt_title">Biometric Prompt</string>
- <string name="biometric_prompt_negative_text">Cancel</string>
<string name="biometric_prompt_retry">Retry</string>
<string name="biometric_prompt_cancelled">Authentication canceled</string>
<string name="biometric_prompt_no_hardware">No Biometric hardware was found</string>