tvankith
tvankith

Reputation: 331

Delete sent push notification in React Native

I need to delete sent push notification in React Native (in both android and iOS) app. Scenario is if user A sent a friend request to user B and cancel friend request after push notification received by B then push notification should be removed from B's push notifications. In my app i don't use VoIP

Upvotes: 1

Views: 1486

Answers (1)

sachin mathew
sachin mathew

Reputation: 1457

On cancelling the friend request sent another silent push notification

and on receiving silent notification delete the first notification by notification ID

removeDeliveredNotification(notificationId) returns Promise containing void;

Upvotes: 4

Related Questions