ios
ios copied to clipboard
React Native Push Notification API for iOS.
I see the implementation for [param mapping](https://github.com/react-native-push-notification/ios/blob/master/ios/RCTConvert+Notification.m) for the iOS notification `interruptionLevel` ``` @implementation RCTConvert (UNNotificationInterruptionLevel) RCT_ENUM_CONVERTER(UNNotificationInterruptionLevel, (@{ @"passive": @(UNNotificationInterruptionLevelPassive), @"active": @(UNNotificationInterruptionLevelActive), @"timeSensitive": @(UNNotificationInterruptionLevelTimeSensitive), @"critical": @(UNNotificationInterruptionLevelCritical) }), 0, integerValue) @end...
When I have some notifications of my app in the Notification Center of IOS, they are removed automatically when I open my app even if I don't tap on one...
When i try run my app in IOS using react-native run-ios --simulator='iPhone 14 Pro' brings me the error: > In file included from /Users/goattech/Documents/W2/W2App/ios/W2App/AppDelegate.m:15: /Users/goattech/Documents/W2/W2App/ios/Pods/Headers/Public/RNCPushNotificationIOS/RNCPushNotificationIOS.h:18:46: warning: 'UIUserNotificationSettings' is deprecated: first...
iOS 16. PushNotificationIOS.setApplicationIconBadgeNumber is not work
This PR adds the ability to request provisional notification permissions. I'm wondering why it has not been added before. Unfortunately, I couldn't get the project to build and run to...
I am trying to set up the push notification for iOS for React Native version 0.71.7. I have done all the setup for this push notification which is mentioned in...
I want to hide Notification Popup programmetically when app is in foreground and notification data/payload contains particular userId?
I need event listener when notif is fire by schedule time. ``` useEffect(() => { const type = 'notification'; PushNotificationIOS.addEventListener(type, onRemoteNotification); return () => { PushNotificationIOS.removeEventListener(type); }; }); const onRemoteNotification...
React Native Version: 0.73.6 Reproduction Steps: 1. Background App 2. Send push notification 3. Tap push notification Using the following code, "entered" is never logged. ``` const onRemoteNotification = (notification)...
Bumps [ip](https://github.com/indutny/node-ip) from 1.1.5 to 1.1.9. Commits 1ecbf2f 1.1.9 6a3ada9 lib: fixed CVE-2023-42282 and added unit test 5dc3b2f 1.1.8 8e6f28b lib: even better node 6 support 088c9e5 1.1.7 1a4ca35 lib:...