Interface: IOSNotificationConfig

Defined in: packages/react-native/src/types/NotificationIOS.ts:705

Interface for configuring iOS notification handling behavior.

Platform

ios

Properties

handleRemoteNotifications?

optional handleRemoteNotifications?: boolean

Defined in: packages/react-native/src/types/NotificationIOS.ts:717

Whether Notify Kit should handle remote (push) notifications on iOS.

When set to false, remote notifications (e.g. from Firebase Cloud Messaging) will be forwarded to the original notification delegate instead of being processed by Notify Kit. This allows libraries like React Native Firebase Messaging to receive tap events via onNotificationOpenedApp() and getInitialNotification().

Defaults to true for backward compatibility.