У меня есть приложение для реагирования, и я отправляю уведомление pu sh с моего node.js сервера с помощью firebase-admin. Я добавил в код свойства sound , но этот звук не воспроизводится в уведомлении. Он воспроизводит звук по умолчанию.
Кроме того, я поместил свои медиа-файлы в
android / app / src / main / res / raw / beep.mp3
поделитесь кодом для отправки уведомления
const message = {
notification: {
body: "Outer Body",
title: "Outer Title"
},
android: {
notification: {
body: "Inner Body",
title: "Inner Title",
sound: "beep"
}
},
token
};
// Send a message to the device corresponding to the provided
// registration 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);
});
Может кто-нибудь помочь мне с тем, что я делаю неправильно с моим кодом?