I want to clone an existing Firebase project, lets name it ProjectA
that previously exists on Firebase console with some Remote Config data to another new project(without any Remote Config data), lets name it ProjectB
.
The idea behind my question is that currently I have developed an Android app that is using the google-service.json
(Firebase configuration file) file from the ProjectA
, so I want to create/clone a new Firebase project ProjectB
(NOTE: I don't want a new Firebase app on the same project) that starts with exactly the same Remote Config data from ProjectA
and then add the google-service.json
from the new ProjectB
to my new Android app.
I have read the firebase-cli documentation but looks like it's out of its scope.
Has someone accomplished something similar like this or has an idea how can I accomplish this? Thanks in advance!