After migrating from v2 to v3, already logged-in users are not showing in the google sign in screen.
GoogleSignin.configure({
webClientId: config.webClientId,
offlineAccess: false,
hostedDomain: '',
accountName: '',
});If there are any already logged-in users, Google sign in page should be opened with already logged-in users.
Every time it's asking sign in consent screen(meaning that we have enter email and password) even if user is already logged in.
Please provide
After couple of hours of investigation found that it was because of Google sign in configurations.
In our code we had like this for sign-in configurations:
GoogleSignin.configure({ webClientId: config.webClientId, offlineAccess: false, hostedDomain: '', accountName: '', });
'hostendDomain' configuration was always empty. This code working fine in v2 version. But after migrating to v3, we started issue like the above one.
To fix this, we have removed 'hostendDomain' configuration from the list :
GoogleSignin.configure({ webClientId: config.webClientId, offlineAccess: false, accountName: '', });
After this change it started showing already signed users.
Thanks for such a wonderful library!

Most helpful comment
After couple of hours of investigation found that it was because of Google sign in configurations.
In our code we had like this for sign-in configurations:
GoogleSignin.configure({ webClientId: config.webClientId, offlineAccess: false, hostedDomain: '', accountName: '', });'hostendDomain' configuration was always empty. This code working fine in v2 version. But after migrating to v3, we started issue like the above one.
To fix this, we have removed 'hostendDomain' configuration from the list :
GoogleSignin.configure({ webClientId: config.webClientId, offlineAccess: false, accountName: '', });After this change it started showing already signed users.
Thanks for such a wonderful library!