Mark push notifications as delivered
You can now track whether push notifications has been successfully delivered to all the intended devices by the Sendbird server. Using the SendbirdPushHelper.markPushNotificationAsDelivered()
method, you can mark a push notification as delivered to a device. To ensure proper functionality, the SendbirdChat.init()
method must be called within the Application.onCreate()
method.
In order to check the delivery rate of push notifications, the SDK retrieves the tracking ID for push notifications and is sent to the server to identify which push notification has been successfully delivered to the device.
Note: If your app is using
Multi-device support
and has implemented either ofSendbirdPushHandler
orSendbirdHmsPushHandler
, this will be called internally so that the app doesn't have to handle it directly.