We're using Firebase Cloud Messaging feature in our Android application which is meant to be used by multiple clients. In our Android application we integrated the "google-services.json" file as suggested here.
The problem is that each of our clients uses a separate Firebase project, whereas, in that file, we can set only ONE Firebase project credentials :
"project_info": {
.....
},
So the question is : Is it possible, in Android app, to switch between different firebase projects (or different "google-services.json" files) at RUNTIME?
PS : I can't see how could this topic be a duplicate of any of the existing topics, since I specifically mentioned that I'd like to switch between Firebase projects "at RUNTIME", not "at build". So the suggested duplicate topic, is NOT really a duplicate. Thank you.