I have a back-end service that uses firebase to send push notifications to an application.
Technically, it is not 1 application but 3 applications in playstore. They have different package name so they are hosted in separate firebase projects.
This means that the back-end service must use 3 different server keys (one from each firebase project, for each application). I would like however to have only one server key, which means that either the different play store apps must be hosted in same firebase project, or the 3 different firebase projects should use the same server key.
From what I read, the first option is not possible. What about the second?