私は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)
}
})
ここ!問題は、通知を受信したときにサウンドがトリガーされないことです。
これで私を助けてください。前もって感謝します。