Reputation: 1380
I wonder what is the main purpose of creating different applications under same project in firebase console as it does not allow to have different package name. I need separate package name for around 20 mobile applications in android for push notifications(google-services.json). Can somebody guide me how to do that in FCM under same account(gmail). Thank you.
Upvotes: 1
Views: 590
Reputation: 6505
Different applications in one firebase project can (or must?) have different package names.
If you want to use push notifications, they will all have the same server key. But you can filter on package name or registration token so it's definitely manageable on your server side.
Alternatively you could make multiple projects, one for each. But note that there is a project limit you might hit. This limit is not the same for everyone, based on account activity and such, and you can request more projects when you reach it.
Upvotes: 2
Reputation: 863
for ex: generally if we develop any app in 3 different platforms like android,iOS,windows. we have to create 3 different applications in single project. then only firebase data will sync and push notifications will work.(server key/project id should mentain same)
Upvotes: 0