React Native Firebase
    Preparing search index...
    interface ReactNativeFirebaseAppCheckProviderAppleOptions {
        debugToken?: string;
        provider?:
            | "debug"
            | "deviceCheck"
            | "appAttest"
            | "appAttestWithDeviceCheckFallback";
    }

    Hierarchy (View Summary)

    Index

    Properties

    debugToken?: string

    debug token to use, if any. Defaults to undefined, pre-configure tokens in firebase web console if needed

    provider?:
        | "debug"
        | "deviceCheck"
        | "appAttest"
        | "appAttestWithDeviceCheckFallback"

    The apple provider to use, either deviceCheck or appAttest, or appAttestWithDeviceCheckFallback, defaults to DeviceCheck. appAttest requires iOS 14+ or will fail, appAttestWithDeviceCheckFallback will use appAttest for iOS14+ and fallback to deviceCheck on devices with ios13 and lower