Home > OS >  Sending Notification to two different apps on same device using FCM for iOS
Sending Notification to two different apps on same device using FCM for iOS

Time:05-03

2 different apps installed in same device with same firebase project and in firebase separate app is created for each app under same firebase project.Will the Fcm notification work on both apps?

Before spending my time on Development I have searched a lot on it, many Developer reported the latest installed app on that device is only getting notification. IS it true.If so any Solution for it?

CodePudding user response:

As long as both of the applications have retrieved a registration token and sent that to your application server and your server will send a message for both tokens, they will receive the message.

  • Related