我已经构建了我使用的Cordova应用程序
https://github.com/phonegap/phonegap-plugin-push
和
https://github.com/Redth/PushSharp
用于发送推送通知。
我的问题是,当推送通知来自我的应用程序时,即使手机处于静音状态,它也会播放声音。 如何使我的应用程序推送通知能够监听而不忽略电话音量?
答案 0 :(得分:0)
第三个是空字符串,将导致跳过声音播放。
尝试添加"soundname": ""
{
"registration_ids": ["my device id"],
"data": {
"title": "Silece",
"message": "Skips playing any sound",
"soundname": ""
}
}