'Does Firebase.auth.signOut() sign out from Google too? [duplicate]

I follow the docs for authenticating users in Firebase with Google. I implemented it and it works fine. It is also said that if I need to sign-out, I need to use:

Firebase.auth.signOut()

Does this line also sign out from Google? When I last used such an authentication, I had to use:

googleSignInClient.signOut()

Is this not needed anymore?



Solution 1:[1]

Using Firebase Auth Firebase.auth.signOut() only Sign's you out of the APP Which Is Being Referenced By Firebase And Not Off Google Entirely.
However If You Use googleSignInClient.signOut() It Signs You Off from The account being referenced by GoogleSignIn/Play Services Inside The App, But It Too Doesnt Sign You Off From Google Entirely.

Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source
Solution 1 mrtechtroid