Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

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 join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant