I have successfully implemented push notification in our Capacitor app (using Angular), but I have not been able to figure out a way to initialize the connection during runtime (without using the google-service.json).
Currently our app only supports Android, but in the future we plan to support IOS as well.
I have seen that this is possible by implementing FCM in a native app.
On Android, they use “FirebaseOptions.Builder builder = …;” for configuration and then initializing the app by calling “FirebaseApp.initializeApp(this, builder.build());”
The reason why I need to support separate Firebase projects is that our app connects to different servers, so each client has its own server and Firebase account and generates its own notifications.
If this is not possible, is there any way to isolate one customer from another?
I am very grateful for any help.