Reputation: 73
I have an Android app
and I useFCM Push Notification
. I have created a new Firebase
account and I want to use it instead of the old one . So how can I Export and Import Google-services.json
to a new project in Firebase
?
Upvotes: 0
Views: 545
Reputation: 600131
The google-services.json
contains information about your Firebase project and the apps you've defined in that project.
If you've created a new project and want to use that with an existing app, you will need to add the app to the new project. After doing that, you will have to download the google-services.json
from the new project, and add it to your Android app (replacing the google-services.json
from the old project). From that point on your app will be connected to the new project.
Upvotes: 1