In Digits if I need to clear all active session I use method:
Digits.getSessionManager().clearActiveSession();
Is it possible to do same in Firebase?
In Digits if I need to clear all active session I use method:
Digits.getSessionManager().clearActiveSession();
Is it possible to do same in Firebase?
Mike from Fabric & Firebase here.
I believe you're looking for:
FirebaseAuth.getInstance().signOut();
which would sign the user out of the active session. For reference: https://firebase.google.com/docs/auth/android/password-auth#next_steps