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
this is error I
SignInException: DefaultInstance already created. Cannot change configuration after creation.
at Google.GoogleSignIn.set_Configuration
then you can add this code when create new google Configuration, that fixed my issue
if(GoogleSignIn.Configuration == null)
{
GoogleSignIn.Configuration = configuration;
GoogleSignIn.Configuration.UseGameSignIn = false;
}
Is there a way to see if you are already logged into google with this plugin? I have searched everywhere and can't seem to find a way.
The text was updated successfully, but these errors were encountered: