Fix issue with bioauth on API 29.
This commit is contained in:
parent
aeeaef567f
commit
e351c74ddb
1 changed files with 1 additions and 1 deletions
|
@ -44,7 +44,7 @@ class BiometricDeviceAuthentication(
|
|||
Log.i(TAG, "Skipping show system biometric or device lock dialog unless forced")
|
||||
}
|
||||
true
|
||||
} else if (force) {
|
||||
} else if (Build.VERSION.SDK_INT >= 21) {
|
||||
if (force) {
|
||||
Log.i(TAG, "firing intent...")
|
||||
showConfirmDeviceCredentialIntent()
|
||||
|
|
Loading…
Add table
Reference in a new issue