Delayed Notifications to apple watch on Recieving Push notifications IOS 13.2.2 and watch os 6.1

205 Views Asked by At

Hi I am developing app which supports both iphone and watch. I am registering for usernotifications from iphone app as below. On Recieving PUsh notifications i am able to get notificaitonsto iphone quckly 1 to 2 secs. But for watch its taking a delay of 20 secs every time. I Tried unpariring and restarting the devices but dint work Please suggest me what should be done to get notifications quickly on watch side. I am using iOS 13.2.2 and watch os - 6.1

  {
        let approveAction = UIMutableUserNotificationAction()
        approveAction.title = NSLocalizedString("Approve", comment: "Notification approve button title")
        approveAction.identifier = "approve"
        approveAction.isDestructive = false
        approveAction.activationMode = .background
        approveAction.isAuthenticationRequired = false


        let denyAction = UIMutableUserNotificationAction()
        denyAction.title = NSLocalizedString("Deny", comment: "Notification deny button title")
        denyAction.identifier = "deny"
        denyAction.isDestructive = true
        denyAction.activationMode = .background
        denyAction.isAuthenticationRequired = false

        let signInCategory = UIMutableUserNotificationCategory()
        signInCategory.setActions([approveAction, denyAction], for: .default)
        signInCategory.identifier = "pushotp"

        let categories = NSSet(object: signInCategory) as? Set<UIUserNotificationCategory>

        let settings = UIUserNotificationSettings(types: [.badge, .sound, .alert], categories: categories)
        DispatchQueue.main.async(execute: {
            UIApplication.shared.registerUserNotificationSettings(settings)
        })
    } 
0

There are 0 best solutions below