react-native-background-geolocation@5.0.0-beta.1
    Preparing search index...

    Interface DeviceSettingsRequest

    An object for redirecting a User to an Android device's settings screen from a DeviceSettings request.

    Contains meta-data about the device (manufacturer, model, version) and whether you’ve already shown this screen.

    interface DeviceSettingsRequest {
        manufacturer: string;
        model: string;
        version: string;
        seen: boolean;
        lastSeenAt: Date;
        action: string;
    }
    Index

    Properties

    manufacturer: string

    Device manufacturer (e.g., "Huawei", "Samsung").

    model: string

    Device model (e.g., "P40", "SM-G991B").

    version: string

    OS version string.

    seen: boolean

    Whether this screen has previously been shown.

    lastSeenAt: Date

    Timestamp of when this screen was last shown.

    action: string

    The settings screen action to be shown. ⚠️ Set automatically by the native layer.