Handling multiple push notifications received when application was inactive

Hi,

It is possible that users of my app will receive multiple notifications [invites] from other users.

I would like to handle them all in one pass when user start the app.

Is it possible with corona?

Or will user have to tap on the one they choose, start the app, handle the single notification and then tap on the rest of them?

Thanks,

Krystian

Push notifications are ultimately controlled by Apple / Google and the OS.

The only way I can think of to achieve what you are proposing, is to send message requests to your own servers with a cron job to send them to Apple/Google every so often. This way you could amalgamate multiple messages on your server before they are sent to Apple / Google, and before they reach the device.

Yeah… that kind of suxx, because I don’t want my server to store anything nor have logic to handle messages.

Push notifications are ultimately controlled by Apple / Google and the OS.

The only way I can think of to achieve what you are proposing, is to send message requests to your own servers with a cron job to send them to Apple/Google every so often. This way you could amalgamate multiple messages on your server before they are sent to Apple / Google, and before they reach the device.

Yeah… that kind of suxx, because I don’t want my server to store anything nor have logic to handle messages.