2
我使用laravel 5和php和推送通知 github鏈接(https://github.com/davibennun/laravel-push-notification)。 我應該怎麼做才能改變推送通知聲音?如何更改推送通知聲音?
我使用laravel 5和php和推送通知 github鏈接(https://github.com/davibennun/laravel-push-notification)。 我應該怎麼做才能改變推送通知聲音?如何更改推送通知聲音?
當您準備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'
))
));
本示例來自您提供的鏈接。
是我試過但沒有工作。我存儲了聲音剪輯並在聲場中給出了路徑,但沒有改變 –