Hide UDFPS overlay on lockout

Bug: 190635404
Test: manual
Change-Id: I102b8ccee781d5b855f13776dd8d6c1a67564630
This commit is contained in:
Ilya Matyukhin
2021-06-23 12:59:56 -07:00
parent 27b63bb150
commit f20ffe0ac0

View File

@@ -178,6 +178,9 @@ class FingerprintAuthenticationClient extends AuthenticationClient<ISession> imp
} catch (RemoteException e) {
Slog.e(TAG, "Remote exception", e);
}
UdfpsHelper.hideUdfpsOverlay(getSensorId(), mUdfpsOverlayController);
mCallback.onClientFinished(this, false /* success */);
}
@Override
@@ -192,5 +195,8 @@ class FingerprintAuthenticationClient extends AuthenticationClient<ISession> imp
} catch (RemoteException e) {
Slog.e(TAG, "Remote exception", e);
}
UdfpsHelper.hideUdfpsOverlay(getSensorId(), mUdfpsOverlayController);
mCallback.onClientFinished(this, false /* success */);
}
}