Rohit attri
Rohit attri

Reputation: 21

Android Push Notification Limit

How many push notifications can we send in Android in a single query and how much time does that query takes to deliver those push notifications

Upvotes: 2

Views: 3103

Answers (1)

Alp Altunel
Alp Altunel

Reputation: 3443

as you may read here:

https://firebase.google.com/docs/cloud-messaging/concept-options#device_throttling

You can send up to 240 messages/minute and 5,000 messages/hour to a single device. This high threshold is meant to allow for short term bursts of traffic, such as when users are interacting rapidly over chat. This limit prevents errors in sending logic from inadvertently draining the battery on a device.

Caution: Do not routinely send messages near this maximum rate. This could waste end users’ resources, and your app may be marked as abusive.

-- deliveries depend on your TTL for messages you set when you are sending. normally if everything is okay it should be delivered instantly.

Upvotes: 2

Related Questions