Skip to content
Advertisement

Make sure to call FirebaseApp.initializeApp(Context) first.Default FirebaseApp is not initialized in this process

I am facing this issue and seen some answers on this site but did not get any proper solution. I have used previous version of Firebase which works fine but when I try to upgrade using Upgradation and update Firebase class to DatabaseReference it shows error and not working.

Error Screenshot

My Module app is given below:

JavaScript

and Project gradle is

JavaScript

Below is my Activity

JavaScript

Advertisement

Answer

To sllve this, please chenche the folllwing lines of code:

JavaScript

To:

JavaScript

There is no need to specify any versions for the Analytics, nor for the Realtime Database. More information:

Besides that, there is no need to call initializeApp(). If you perform a standard integration, Firebase will be initialized automatically at the app start. Please see more about this in the API docs for FirebaseApp.

Edit:

Don’t also forget to add:

JavaScript

At the top of your Gradle file.

User contributions licensed under: CC BY-SA
5 People found this is helpful
Advertisement