Description
Hi,
This issue refer to: zo0r/react-native-push-notification#1716
The API of iOS "cancelAllLocalNotifications" has been deprecated from iOS 11, so it doesn't not work from iOS 11 or above.
Here the replacement method:
https://developer.apple.com/documentation/usernotifications/unusernotificationcenter/1649509-removeallpendingnotificationrequ
This is also probably the case for:
https://developer.apple.com/documentation/uikit/uiapplication?language=objc
scheduleLocalNotification
:Schedules a local notification for delivery at its encapsulated date and time.
DeprecatedpresentLocalNotificationNow
Presents a local notification immediately.
DeprecatedcancelLocalNotification
Cancels the delivery of the specified scheduled local notification.
DeprecatedcancelAllLocalNotifications
Cancels the delivery of all scheduled local notifications.
DeprecatedscheduledLocalNotifications
All currently scheduled local notifications.
Deprecated
cc @Naturalclar