手机静音时正在播放Cordova App PushNotification声音

时间:2018-11-01 12:26:11

标签: cordova push-notification

我已经构建了我使用的Cordova应用程序

https://github.com/phonegap/phonegap-plugin-push

https://github.com/Redth/PushSharp

用于发送推送通知。

我的问题是,当推送通知来自我的应用程序时,即使手机处于静音状态,它也会播放声音。 如何使我的应用程序推送通知能够监听而不忽略电话音量?

1 个答案:

答案 0 :(得分:0)

第三个是空字符串,将导致跳过声音播放。

尝试添加"soundname": ""

{
  "registration_ids": ["my device id"],
  "data": {
    "title": "Silece",
    "message": "Skips playing any sound",
    "soundname": ""
  }
}