Where to clear Firebase local cache in Unity Editor
Hi guys, I'm running into some trouble to trying to clear the local cached data by Firebase like Authenticated User and Database.
I tried to clear in
Regedit
LocaLow
But the Firebase data still persist when I run the editor again, the user still logged in and the database still there.
Googled a lot and searched locally in my computer a lot. Still can't find it.
OMG, when you find let me know.. searching for it too.
Answer by Baydogan · Apr 09, 2021 at 03:54 PM
Hope this helps
var db = FirebaseFirestore.DefaultInstance;
db.TerminateAsync();
db.ClearPersistenceAsync();
Your answer
Follow this Question
Related Questions
So far, I've created an authentication system using firebase but database doesn't work as it should 0 Answers
Inventory that loads data from an XML 0 Answers
how to define a user id securely 0 Answers
Get Other Players information (those who are installed) ? 0 Answers
How to setup AWS dynamoDB that I can CRUD (create, read, update, delete) data by Unity? 0 Answers