diff options
Diffstat (limited to 'app/src/main/java')
-rw-r--r-- | app/src/main/java/com/zeapo/pwdstore/utils/auth/Authenticator.kt | 2 |
1 files changed, 1 insertions, 1 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() { |