我正在使用laravel 5和php以及推送通知 github链接(https://github.com/davibennun/laravel-push-notification)。 如何更改推送通知声音?
答案 0 :(得分:2)
当您准备message
发送时,您有一个字段sound
。你可以在那里编辑来改变声音。
$message = PushNotification::Message('Message Text',array(
'badge' => 1,
'sound' => 'example.aiff', // EDIT THIS filename
'actionLocKey' => 'Action button title!',
'locKey' => 'localized key',
'locArgs' => array(
'localized args',
'localized args',
),
'launchImage' => 'image.jpg',
'custom' => array('custom data' => array(
'we' => 'want', 'send to app'
))
));
此示例来自您提供的链接。