After updating unity to 2020.3.33 my google play services not logged in.

In my unity 2019 version my GPGS [Google play game services] work perfectly but when i update unity to 2020.3.33, after that google play services login is not working it can failed every time.

My all previous play store build is work correctly but Unity 2020.3.33 build is not working.

Please help me and thank you.

Solve this problem by updating play services plugin from v0.10 to v0.11.

Now login is work but login prompt is not display on top on the screen, why ? my code is :

i try with Social :-

Social.localUser.Authenticate((bool success) => {
                if (success)
                {
                    isUserSignIn = true;

                    if (PlayerPrefs.HasKey("HighScore") && PlayerPrefs.GetInt("HighScore") >= 50)
                    {
                        OnAddScoreToLeaderBorad(PlayerPrefs.GetInt("HighScore"));
                    }
                }
                else
                {
                    isUserSignIn = false;
                }
            });

And also try with PlayGamesPlatform :-

PlayGamesPlatform.Instance.Authenticate((success) =>
            {
                switch (success)
                {
                    case SignInStatus.Success:
                        isUserSignIn = true;

                        if (PlayerPrefs.HasKey("HighScore") && PlayerPrefs.GetInt("HighScore") >= 50)
                        {
                            OnAddScoreToLeaderBorad(PlayerPrefs.GetInt("HighScore"));
                        }
                        break;
                    default:
                        isUserSignIn = false;
                        Debug.Log("log - - - " + success);
                        break;
                }
            });