Skip to content
This repository has been archived by the owner on Apr 10, 2024. It is now read-only.

Commit

Permalink
WalletActivity: Don't explicity request fp/face auth
Browse files Browse the repository at this point in the history
There is currently no feedback or indication that biometric authentication is in progress.

The user must explicitly tap the "Unlock to Pay" button for biometrics to be requested.

Change-Id: I8b1a7bb160a2623cc0ec7ac0cc5060c7d6fad6c9
  • Loading branch information
jhenrique09 committed Mar 20, 2022
1 parent cf279b9 commit 24449a8
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -205,18 +205,18 @@ protected void onStart() {
protected void onResume() {
super.onResume();
mWalletScreenController.queryWalletCards();
mKeyguardViewManager.requestFp(
/*mKeyguardViewManager.requestFp(
true,
Utils.getColorAttrDefaultColor(
this, com.android.internal.R.attr.colorAccentPrimary));
mKeyguardViewManager.requestFace(true);
mKeyguardViewManager.requestFace(true);*/
}

@Override
protected void onPause() {
super.onPause();
mKeyguardViewManager.requestFp(false, -1);
mKeyguardViewManager.requestFace(false);
/*mKeyguardViewManager.requestFp(false, -1);
mKeyguardViewManager.requestFace(false);*/
}

@Override
Expand Down

0 comments on commit 24449a8

Please sign in to comment.