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
Asked
Active
Viewed 2,286 times
1
-
This is useful for you: http://stackoverflow.com/questions/15017486/android-push-notification-gcm-is-there-any-daily-limit – Lavekush Agrawal Aug 21 '15 at 10:06
-
i already checked this link but its still not clear – Rohit attri Aug 22 '15 at 12:10
-
So you need to do google and collect the data. – Lavekush Agrawal Aug 24 '15 at 06:39
-
great answer dude you are so brilliant – Rohit attri Aug 26 '15 at 07:17
-
Stackoverfow it not a place for opinion or statistics, thats why I was refer you to google , you cant find here anything regarding question – Lavekush Agrawal Aug 26 '15 at 09:00
-
come'on dude is it not obvious that i already googled about it and when i was not able to find anything on google only then i posted a question here. If you'll be able to find a answer on google then please post it here. – Rohit attri Aug 27 '15 at 09:33
-
Your question is not matching Stackoverflow standerd thats why I refer you on google,Please read this how to ask a good question, http://stackoverflow.com/help/how-to-ask – Lavekush Agrawal Aug 27 '15 at 09:55
1 Answers
2
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.

Alp Altunel
- 3,324
- 1
- 26
- 27