ios
ios copied to clipboard
React Native Push Notification API for iOS.
``` const scheduleLocalNotification = () => { const getCorrectDate = () => { const date = new Date(); date.setDate(date.getDate() + 1); date.setMinutes(date.getMinutes() + 2); return date; }; PushNotificationIOS.addNotificationRequest({ id: 'test',...
## Description When I open a scheduled notification when the app is killed, the app opens and nothing happens. When I open a scheduled notification when the app is in...
Device iPhone X version- iOS 14 beta version. App is crashing every time once new push come. anyone have solution for this.
Here is my code for creating rich notification ```javascript PushNotificationIOS.setNotificationCategories([ { id: 'userAction', actions: [ { id: 'dismiss', title: 'Dismiss', options: { foreground: false } }, { id: 'snooz', title:...
# Bug I followed everything here (https://github.com/react-native-community/react-native-push-notification-ios ) to use PushNotification on iOS, but when I try to build the app, I get the following error. RCTPushNotificationManager.h file not found...
Using [react-native-push-notification-ios](https://github.com/react-native-push-notification-ios/push-notification-ios), I would like the notification to arrive, not be shown and the notification data to be passed to the React Native layer to the onNotification function. To do...
iOS 15 introduced time-sensitive notifications which requires `interruptionLevel` to be set on the notification object. Something like shown below:  Other interruption levels are `.active` and `.passive`.
"@react-native-community/push-notification-ios": "^1.8.0" "react-native-push-notification": "^7.3.1" "@react-native-firebase/messaging": "^10.3.1" I have tried two different solutions to handling notifications on iOS. The first was to send data-only notifications and handle them by using RNFirebase's...
I'm trying to add APNS notification to an IOS app. I've been through the entier setup process I went into an error (see #334) but I believe this is not...
When a notification is received, `didReceiveRemoteNotification` is called with a completion handler, which is then passed to RN. However, if the user performs an action on the notification, that is...