So I figured out how to properly signout with Google. Cool. Now, what about Facebook?
When I get an error signing in to Facebook, such as an error indicating I already h
I had a similar problem and got it solved using both the firebase Auth instance and the facebook LoginManager instance
LoginManager
FirebaseAuth.getInstance().signOut(); LoginManager.getInstance().logOut();
My Question