Skip to content Skip to sidebar Skip to footer

Firebase Database Still Have Slight Downloads Even After Gooffline() And Keepsynced(false)

My Firebase database still have slight downloads even after goOffline() and keepSynced(false). I just want to get the data once. Then I save it to SharedPreferences. Next time use

Solution 1:

You cannot completely turn off Firebase as long as you use are using the database. What can you see in Firebase Console is traffic that is gathered from all sources. Even if you have active listeners or only the users are accessing your app, all that traffic is recorded there. Even the usage of Firebase Console is considered usage and is present as traffic there. As Frank said, to have a more details view about your traffic you need to enable debug logging and check what happens in the logcat.


Post a Comment for "Firebase Database Still Have Slight Downloads Even After Gooffline() And Keepsynced(false)"