-
- All Implemented Interfaces:
public interface BiometricHandlerInterface to display biometric and verify the device supported for biometric
-
-
Method Summary
Modifier and Type Method Description abstract BooleanisSupported(Integer strongAuthenticators, Integer weakAuthenticators)check support for Biometric and device credential abstract Unitauthenticate(BiometricPrompt.AuthenticationCallback authenticationCallback)display biometric prompt for Biometric and device credential -
-
Method Detail
-
isSupported
abstract Boolean isSupported(Integer strongAuthenticators, Integer weakAuthenticators)
check support for Biometric and device credential
- Parameters:
strongAuthenticators- accept different strong authenticators like BIOMETRIC_STRONGweakAuthenticators- accept different strong authenticators like BIOMETRIC_WEAK
-
authenticate
abstract Unit authenticate(BiometricPrompt.AuthenticationCallback authenticationCallback)
display biometric prompt for Biometric and device credential
- Parameters:
authenticationCallback- Result of biometric action in callback
-
-
-
-