When receiving several push notifications for the same app without entering the application, is it possible to stack the notifications? Similar to Iphones own (text)messaging app.
Thank you
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Short answer : Yes with server side handling.
Long answer :
When pushing a notification you can send some data with it see
here
When a iPhone launches you can call a webservice which will reset the counter.
When sending a notification you increase it.
Typical SQL table to do that is
| id_table (int) | UUID (TEXT) | notif_counter (int) |or something like this.