AuthenticationRequest.Biometric.Builder


public final class AuthenticationRequest.Biometric.Builder


Builder used to create an instance of Biometric.

Summary

Public constructors

Public methods

final @NonNull AuthenticationRequest.Biometric

Construct an instance of Biometric.

final @NonNull AuthenticationRequest.Biometric.Builder

The optional AuthenticationRequest.BodyContent of the prompt.

final @NonNull AuthenticationRequest.Biometric.Builder
setIsConfirmationRequired(boolean isConfirmationRequired)

Whether user confirmation should be required for passive biometrics.

final @NonNull AuthenticationRequest.Biometric.Builder
@RequiresPermission(value = "android.permission.SET_BIOMETRIC_DIALOG_ADVANCED")
setLogoBitmap(Bitmap logoBitmap)

The optional bitmap drawable of the logo that will be shown on the prompt.

final @NonNull AuthenticationRequest.Biometric.Builder
@RequiresPermission(value = "android.permission.SET_BIOMETRIC_DIALOG_ADVANCED")
setLogoDescription(String logoDescription)

The optional logo description text that will be shown on the prompt.

final @NonNull AuthenticationRequest.Biometric.Builder
@RequiresPermission(value = "android.permission.SET_BIOMETRIC_DIALOG_ADVANCED")
setLogoRes(@DrawableRes int logoRes)

The optional drawable resource of the logo that will be shown on the prompt.

final @NonNull AuthenticationRequest.Biometric.Builder

The minimum biometric strength for the authentication.

final @NonNull AuthenticationRequest.Biometric.Builder
setSubtitle(String subtitle)

The optional subtitle of the prompt.

Public constructors

Builder

Added in 1.4.0-alpha03
public Builder(
    @NonNull String title,
    @NonNull AuthenticationRequest.Biometric.Fallback authFallback
)
Parameters
@NonNull String title

The title of the prompt.

@NonNull AuthenticationRequest.Biometric.Fallback authFallback

The Fallback for the biometric authentication.

Public methods

build

Added in 1.4.0-alpha03
public final @NonNull AuthenticationRequest.Biometric build()

Construct an instance of Biometric.

setIsConfirmationRequired

Added in 1.4.0-alpha03
public final @NonNull AuthenticationRequest.Biometric.Builder setIsConfirmationRequired(boolean isConfirmationRequired)

Whether user confirmation should be required for passive biometrics.

setLogoBitmap

Added in 1.4.0-alpha03
@RequiresPermission(value = "android.permission.SET_BIOMETRIC_DIALOG_ADVANCED")
public final @NonNull AuthenticationRequest.Biometric.Builder setLogoBitmap(Bitmap logoBitmap)

The optional bitmap drawable of the logo that will be shown on the prompt. Note that using this method is not recommended in most scenarios because the calling application's icon will be used by default. Setting the logo is intended for large bundled applications that perform a wide range of functions and need to show distinct icons for each function. This requires SET_BIOMETRIC_DIALOG_ADVANCED permission.

setLogoDescription

Added in 1.4.0-alpha03
@RequiresPermission(value = "android.permission.SET_BIOMETRIC_DIALOG_ADVANCED")
public final @NonNull AuthenticationRequest.Biometric.Builder setLogoDescription(String logoDescription)

The optional logo description text that will be shown on the prompt. Note that using this method is not recommended in most scenarios because the calling application's name will be used by default. Setting the logo description is intended for large bundled applications that perform a wide range of functions and need to show distinct description for each function. This requires SET_BIOMETRIC_DIALOG_ADVANCED permission.

setLogoRes

Added in 1.4.0-alpha03
@RequiresPermission(value = "android.permission.SET_BIOMETRIC_DIALOG_ADVANCED")
public final @NonNull AuthenticationRequest.Biometric.Builder setLogoRes(@DrawableRes int logoRes)

The optional drawable resource of the logo that will be shown on the prompt. Note that using this method is not recommended in most scenarios because the calling application's icon will be used by default. Setting the logo is intended for large bundled applications that perform a wide range of functions and need to show distinct icons for each function. This requires SET_BIOMETRIC_DIALOG_ADVANCED permission.

setMinStrength

Added in 1.4.0-alpha03
public final @NonNull AuthenticationRequest.Biometric.Builder setMinStrength(
    @NonNull AuthenticationRequest.Biometric.Strength minStrength
)

The minimum biometric strength for the authentication. Note that Class 3 biometrics are guaranteed to meet the requirements for Class 2 and thus will also be accepted.

setSubtitle

Added in 1.4.0-alpha03
public final @NonNull AuthenticationRequest.Biometric.Builder setSubtitle(String subtitle)

The optional subtitle of the prompt.