Rename some biometrics things since it's no longer specifically for biometric auth

This commit is contained in:
arkon
2021-05-22 12:39:47 -04:00
parent bbbcb18b91
commit c741920ec0
7 changed files with 17 additions and 17 deletions

View File

@@ -154,7 +154,7 @@ object PreferenceKeys {
const val startScreen = "start_screen"
const val useBiometricLock = "use_biometric_lock"
const val useAuthenticator = "use_biometric_lock"
const val lockAppAfter = "lock_app_after"

View File

@@ -65,7 +65,7 @@ class PreferencesHelper(val context: Context) {
fun hideBottomBar() = flowPrefs.getBoolean(Keys.hideBottomBar, true)
fun useBiometricLock() = flowPrefs.getBoolean(Keys.useBiometricLock, false)
fun useAuthenticator() = flowPrefs.getBoolean(Keys.useAuthenticator, false)
fun lockAppAfter() = flowPrefs.getInt(Keys.lockAppAfter, 0)