Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Apple push notification or firebase push notifications? [closed]

I just want to know that i used fireabase in my project. Can anyone please guide me which is good for push notifications? Firebase or Apple Push notification. and I also want some genuine reasons which one is better for User.

like image 443
Dishant Rajput Avatar asked Mar 01 '17 07:03

Dishant Rajput


1 Answers

Firebase Cloud Messaging is originally a platform to send notification for Android. They added an iOS SDK, but using their SDK on iOS means that you are using both FCM and Apple Push notification service:

Push for iOS device => Firebase Cloud Messaging => Apple APNS => Device

If you are only developing an iOS app, it is best to use APNS directly. If you already have all your infrastructure set up for FCM, then you may save you a bit of code by supporting only FCM to address both iOS and Android.

However there is no specific technical benefit doing so.

like image 126
Himanth Avatar answered Oct 12 '22 00:10

Himanth