0

I want to increase app icon badge by 1 when expo push notification comes.

Here's my code:

sendNotification({
  to: route.params.user.pushToken,
  title: `${person.username} size mesaj gönderdi`,
  body: `${messages[0].text}`,
  badge: 1,
  "content-available": 1,
  data: { url: "myApp://ChatList", type: "chat" },
});

Can you help me how can I listen to push notification? Or can you specify how to do badge + 1 on the server side?

0 Answers0