-
Notifications
You must be signed in to change notification settings - Fork 27
Open
Labels
Description
Firebase push notifications are great on android but weak on ios. The reason is that a firebase push notification cant fire on iOS if the app is in the background or closed. APNS notifications can do this (and is supported through Fuse.APNS) but that means managing that second backend (and its a pain in the ass).
Firebase has support for delivering notifications via APNS, which has all the benefits of APNS but with the benefit that Firebase is a way easier backend to talk to.
The goal is to add support for this to Fuse.Firebase.
I'd like to do this without disturbing the current Firebase.PushNotification support. Which, whilst there is some api overlap, I think is possible as no project is going to use both methods of talking to iOS at once.