React Native Firebase
    Preparing search index...

    An interface representing all the available permissions that can be requested by your app via the requestPermission API.

    interface IOSPermissions {
        alert?: boolean;
        announcement?: boolean;
        badge?: boolean;
        carPlay?: boolean;
        criticalAlert?: boolean;
        providesAppNotificationSettings?: boolean;
        provisional?: boolean;
        sound?: boolean;
    }
    Index

    Properties

    alert?: boolean

    Request permission to display alerts.

    Defaults to true.

    announcement?: boolean

    On iOS >= 13, request permission for Siri to automatically read out notification messages over AirPods.

    Defaults to false.

    badge?: boolean

    Request permission to update the application badge.

    Defaults to true.

    carPlay?: boolean

    Request permission to display notifications in a CarPlay environment.

    Defaults to true.

    criticalAlert?: boolean

    Request permission for critical alerts.

    Defaults to false.

    providesAppNotificationSettings?: boolean

    On iOS, request permission to display a button for in-app notification settings.

    Default to false

    provisional?: boolean

    On iOS, equest permission to provisionally create non-interrupting notifications.

    Defaults to false.

    sound?: boolean

    Request permission to play sounds.

    Defaults to true.