I got a following warning in an iOS app when I processed an in-coming notification.
Warning: UNUserNotificationCenter delegate received call to -userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler: but the completion handler was never called.
May I ask that completionHandler is not need to be called in userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler: ?
At least for me it didn't have any impact so far. Nevertheless I've created a fix for that so in the next plugin version it will be included and the error message shouldn't appear anymore.
Thank you for publishing the library.
May I ask one point?
I got a following warning in an iOS app when I processed an in-coming notification.
May I ask that completionHandler is not need to be called in userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler: ?
https://github.com/TobiasBuchholz/Plugin.Firebase/blob/development/src/iOS/CloudMessaging/FirebaseCloudMessagingImplementation.cs#L75-L83
According to the API document,
Since it is warning, it may not have a big impact though.