Hello, i want to change the vibration pattern in a local notification for android and ios when the notification are recivied. i use capacitor 5
await LocalNotifications.schedule({
notifications: [
{
title: title,
body: body,
id: notificationID,
channelId: channelID,
ongoing: true,
schedule: {
at: new Date(dateYear, dateMonth - 1, dateDay, timeHour, timeMinute),
allowWhileIdle: true
},
sound: 'default',
}
]
});
how can i define here that i use a vibration pattern. is there a way to create a vibration pattern via capacitor for local notifications? .
I would appreciate an answer and some help.