ping-identity
    Preparing search index...

    Type Alias BindingBiometricAndroidConfig

    Android-specific biometric authenticator options.

    type BindingBiometricAndroidConfig = {
        prompt?: {
            description?: string;
            negativeButtonText?: string;
            subtitle?: string;
            title?: string;
        };
        strongBoxPreferred?: boolean;
    }
    Index

    Properties

    prompt?: {
        description?: string;
        negativeButtonText?: string;
        subtitle?: string;
        title?: string;
    }

    Biometric prompt text shown to the user during authentication.

    Type Declaration

    • Optionaldescription?: string
    • OptionalnegativeButtonText?: string

      Label for the negative/cancel button (shown for BIOMETRIC_ONLY auth type).

    • Optionalsubtitle?: string
    • Optionaltitle?: string
    strongBoxPreferred?: boolean

    Prefer StrongBox-backed key storage when available (Android only).

    StrongBox provides a higher level of hardware security than the default TEE. Falls back to TEE when StrongBox is unavailable on the device. Defaults to false when omitted.