Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Issue with Google play authentication on some devices #3329

Open
Lavaking-Zero opened this issue Dec 25, 2024 · 0 comments
Open

Issue with Google play authentication on some devices #3329

Lavaking-Zero opened this issue Dec 25, 2024 · 0 comments

Comments

@Lavaking-Zero
Copy link

Sadly I am currently having Issues with the authentication in my app but only for like 5-10% of users.

First of all this is my authentication method ,I am calling it in the Awake() if that matters:

PlayGamesPlatform.Instance.Authenticate(status =>
 {
            
if (status == SignInStatus.Success)
            {
                

PlayGamesPlatform.Instance.RequestServerSideAccess(true, code =>
                {
                    userID = code;

                });
                loggedIn = true;
            }else{
            ErrorPanel.SetActive(true);
            ErrorCode.GetComponent<Text>().text ="Errorcode: 8";
            ErrorMSG.GetComponent<Text>().text ="Google Play Games 
            - authentication failed";
            LoadPanel.SetActive(false);
        }
        });

    }

What I have found out is that it seems to produce this error on devices which have family link installed... (Not confirmed that it only happens on family link devices as that's, as you can probably imagen kinda hard to do :D)

The error I am getting in the end is the classic:

Error: returning an error code

I am using the Play games plugin Version 0.11.01

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant