React-native-Firebase 在通知到达时播放自定义声音



我有一个反应原生应用程序,它是一个基于反应钩子的应用程序,我想根据通知有效载荷数据播放自定义音乐。它仅在打开应用程序时工作,但我也想在应用程序在后台播放自定义声音。

useEffect(() => {
checkFirebase();
const firebaseNotification = firebase.notifications().onNotification((notification) => {
console.log("notitication", notification);
const { sound } = notification.data;
console.log("sound", sound);
playSound(sound);
})
return () => {
messageListener();
firebaseNotification();
messageCheck();
}
})

分享了我的 React 原生代码。还共享我从我的 Node.js 应用程序发送的正文

const message = {
notification: {
title: "Account Deposit",
body: "A deposit to your savings account has just cleared.",
},
android: {
ttl: 3600 * 1000,
notification: {
color: '#ff0000',
sound: 'beep.wav'
}
},
data: {
sound: "beep.wav"
},
token
};
admin.messaging().send(message)
.then((response) => {
// Response is a message ID string.
console.log('Successfully sent message:', response);
})
.catch((error) => {
console.log('Error sending message:', error);
});

您的应用程序中需要一些东西,允许您在应用程序没有焦点时玩游戏。我发现react-native-track-player非常好,应该提供你需要的东西。

相关内容

  • 没有找到相关文章

最新更新