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.

Have you solved this?

Hope this helps

    var db = FirebaseFirestore.DefaultInstance;
    db.TerminateAsync();
    db.ClearPersistenceAsync();