skip to Main Content

How to get google-services.json file. I am making a single page free app without any firebase server. Do I still need to make google-services.json from firebase?

The whole process of publishing app is more confusing then developing the app itself.

Tried service acounts json file from google cloud console but it didnt work

2

Answers


  1. It’s not needed if your app doesn’t need firebase. google-service.json file comes from the android project setting on firebase.

    Login or Signup to reply.
  2. I am making a single-page free app without any Firebase server. Do I still need to make google-services.json from Firebase?

    If you don’t want to interact with Firebase in any way, then there is no need to add the google-services.json file to your project.

    How to get the google-services.json file?

    If you however need to interact with Firebase, then you should create a new Firebase project inside the Firebase console, download the google-services.json file, and add it to your project.

    If you also need to publish your app, and you’re using for example Firebase Authentication, please note that you need some keys in order to make it work:

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search