It is possible to play sound on Ionic in push notifications when the user device in the silent mode? I'm using ionic v.2.2.3, "phonegap-plugin-push", APNS for ios and GCM for android.
1 Answers
1
votes
According to the payload documentation https://github.com/phonegap/phonegap-plugin-push/blob/master/docs/PAYLOAD.md#sound , you're able to send a payload/notification such as:
Android
{
"registration_ids": ["my device id"],
"data": {
"title": "Default",
"message": "Plays default notification sound",
"soundname": "default"
}
}
iOS
{
"aps": {
"alert": "Test sound",
"sound": "default"
}
}
which will play the phones default notification sound.