React Native Auth0 - v5.5.0
    Preparing search index...

    Interface LocalAuthenticationOptions

    Platform specific: Native only (iOS/Android). Options for configuring local authentication (e.g., biometrics or device PIN).

    interface LocalAuthenticationOptions {
        title: string;
        subtitle?: string;
        description?: string;
        cancelTitle?: string;
        evaluationPolicy?: Interface.LocalAuthenticationStrategy;
        authenticationLevel?: Interface.LocalAuthenticationLevel;
        fallbackTitle?: string;
        deviceCredentialFallback?: boolean;
        biometricPolicy?: Interface.BiometricPolicy;
        biometricTimeout?: number;
    }
    Index

    Properties

    title: string
    subtitle?: string
    description?: string
    cancelTitle?: string
    authenticationLevel?: Interface.LocalAuthenticationLevel
    fallbackTitle?: string
    deviceCredentialFallback?: boolean
    biometricPolicy?: Interface.BiometricPolicy

    Controls when biometric authentication prompts are shown when accessing stored credentials.

    BiometricPolicy.default
    
    biometricTimeout?: number

    Timeout in seconds for session and appLifecycle policies.

    • For session policy: credentials are cached for this duration after successful biometric authentication
    • For appLifecycle policy: optional timeout, defaults to 3600 seconds (1 hour) if not specified
    3600 (1 hour)