Skip to content
This repository has been archived by the owner on Jan 14, 2025. It is now read-only.

play the notification sound simultaneously on android and bluetooth device #2408

Open
jasimvk opened this issue Mar 27, 2024 · 0 comments
Open

Comments

@jasimvk
Copy link

jasimvk commented Mar 27, 2024

I want to play the notification sound simultaneously on android phone and bluetooth device

my code is below

messaging().setBackgroundMessageHandler(async (remoteMessage) => {
const { android } = remoteMessage;
const { body, title, android_channel_id } = remoteMessage?.data;
const notificationOptions = {
message: body,
title,
vibrate: true,
importance: Importance.HIGH,
vibrationPattern: [400, 400],
playSound: true,
};
let channels = {
newservice: 'notnew.mp3',
};
if (android?.channelId === "cnclservice" || android_channel_id === "cnclservice") {
channels = {
cnclservice: 'notcncl.mp3'
}

} else if (android?.channelId === "notify" || android_channel_id === "notify") {
channels = {
notify: 'notalert.mp3',
}
}
Object.entries(channels).forEach(([channelId, soundName]) => {
const options = {
...notificationOptions,
soundName,
channelId,
};
PushNotification.localNotification(options);
});
});

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant