Push notifications in MAUI iOS App - how to reach Azure Notification Hubs?
I am working on upgrading a Xamarin mobile app to MAUI. So far, things are mostly going smoothly, but I've run into trouble on the iOS side of things.
The old version of the app needed to receive push notifications from the remote server. I accomplished this by using Azure Notification Hubs, and the Xamarin.Azure.NotificationHubs
NuGet package.
The Android version of this package is compatible with MAUI, so there's no trouble there. However, the iOS version of this package is not (it's based on Xamarin.iOS), so I need to find a MAUI-compatible way to interface with Azure Notification Hubs on iOS.
Does anyone have any suggestions?