You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
hi i am trying to log in with google and its one tap using credential manager but i have not found the way to do it.
do you have to do it from the common part or with expect/actual?
The text was updated successfully, but these errors were encountered:
@Puskistolero92 if your firebase users have google accounts linked to them, then theres a few ways to implement the Google sign in step, but this library doesn't manage that for you as far as I know. Theres a few guides on how to implement Google single sign on such as:
After the google single sign on is complete, your app receives an id_token and access_token, and to log into the firebase user you can do the something like:
importdev.gitlive.firebase.auth.FirebaseAuthimportdev.gitlive.firebase.auth.GoogleAuthProviderval tokenResult = googleAuth.signIn() // implementation you chose for google single sign inval cred =GoogleAuthProvider.credential(tokenResult.idToken, tokenResult.accessToken)
val firebaseResult = auth.signInWithCredential(cred)
hi i am trying to log in with google and its one tap using credential manager but i have not found the way to do it.
do you have to do it from the common part or with expect/actual?
The text was updated successfully, but these errors were encountered: