简体   繁体   中英

How to change push notification sound?

I am using laravel 5 and php and for push notification github link( https://github.com/davibennun/laravel-push-notification ). What should I do to change push notification sound ?

When you prepare your message to send you have a field sound . You can edit there to change the 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'
    ))
));

This example is from the link you provided.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM