We have an App for iPhone + Watch developed with iOS 14 and WatchOS 7 that uses Local Notification on Watch with this function:
func userNotificationCenter(_ center: UNUserNotificationCenter, willPresent notification: UNNotification, withCompletionHandler completionHandler: @escaping (UNNotificationPresentationOptions) -> Void) {
completionHandler([.banner, .badge, .sound])
}
All works very well, and I receive Notification in 2/3 seconds
With iOS 15 and WatchOS 8 instead I need to wait 10/15 seconds to receive Notification
Do you have any suggestions?
I try to use only [.badge, .sound] or [.banner, .sound] but the result is always the same
Thank you