For some reason, I need to use two firebase projects in a single android app. Now I need to access those two Firebase projects Firestore Databases at the same time. But I had seen in some StackOverflow questions that this is not possible to get both the Firebase projects instances at same time.
My requirement is to read data from first Firebase project Database, now the data will be processed(some operations or changes) in the android app. After that I need to upload that processed data to Second Firebase project Database.
So I need to switch the Firebase project Instances at run time according to the requirement. Is it possible to use two instances in single android app?