Android overrides push notification

Hi, I’m working with ionic 1.0 and I’m sending push notifications from a php script in my server. When I get the notifications in my android phone the notification sound fires multiple times (one per echa notification) but it only shows the last one.

How can I do to avoid this and show all the notifications?

Thanks

1 Like

Nobody? I’m the only one with this problem?

Nobody? I’m the only one with this problem?

Did you fix this problem ?

thanks

Did you fix this bug, @fernandosicom?
I am facing this bug.

I resolved!
You need to edit push message.
Add “notId” into “data”, example:

"notification": {
        "title": "testing stack notification ",
        "message":"is it working",
        "android": {               
                        "data": {
                            "title": "testing stack notification",
                            "message": "is it working",
                            "style": "inbox",
                            "summaryText": "yes its %n% notifications",
                                "noteId": "123456"
                       }
                   }
    }

Goodluck!

1 Like