Don't show duplicate unlock screen on API 29+.

This commit is contained in:
akwizgran
2020-09-01 16:40:44 +01:00
parent 0a33c77393
commit 95cccd1d15

View File

@@ -117,14 +117,24 @@ public class UnlockActivity extends BaseActivity {
@RequiresApi(api = 28) @RequiresApi(api = 28)
private void requestFingerprintUnlock() { private void requestFingerprintUnlock() {
BiometricPrompt biometricPrompt = new Builder(this) BiometricPrompt biometricPrompt;
.setTitle(getString(R.string.lock_unlock)) if (SDK_INT >= 29) {
.setDescription( biometricPrompt = new Builder(this)
getString(R.string.lock_unlock_fingerprint_description)) .setTitle(getString(R.string.lock_unlock))
.setNegativeButton(getString(R.string.lock_unlock_password), .setDescription(getString(
getMainExecutor(), R.string.lock_unlock_fingerprint_description))
(dialog, which) -> requestKeyguardUnlock()) .setDeviceCredentialAllowed(true)
.build(); .build();
} else {
biometricPrompt = new Builder(this)
.setTitle(getString(R.string.lock_unlock))
.setDescription(getString(
R.string.lock_unlock_fingerprint_description))
.setNegativeButton(getString(R.string.lock_unlock_password),
getMainExecutor(),
(dialog, which) -> requestKeyguardUnlock())
.build();
}
CancellationSignal signal = new CancellationSignal(); CancellationSignal signal = new CancellationSignal();
AuthenticationCallback callback = new AuthenticationCallback() { AuthenticationCallback callback = new AuthenticationCallback() {
@Override @Override