0

私はSwiggyに似たアプリケーションを構築しているので、顧客から新しい注文を受けると、プッシュ通知をトリガーします。そのとき、別のホーン サウンドをトリガーする必要があります。

使用モジュール:

// For Firebase notification
@react-native-firebase/messaging
react-native-push-notification (for local notification)


// Background lisner to trigger sound
import messaging from '@react-native-firebase/messaging';
import SoundPlayer from 'react-native-sound-player'

messaging().setBackgroundMessageHandler(async(remoteMsg) => {
    try {
        SoundPlayer.playSoundFile('air_horn', 'mp3')
    } catch (e) {
        console.log(`cannot play the sound file`, e)
    }
})

ここ!問題は、通知を受信したときにサウンドがトリガーされないことです。

これで私を助けてください。前もって感謝します。

4

1 に答える 1

0

soundフィールドをプッシュ通知ペイロードに設定します https://firebase.google.com/docs/cloud-messaging/http-server-ref#notification-payload-support

于 2021-07-25T16:31:45.030 に答える