- Home /
Google Playgames sigin UI not appearing and not throwing any Error
Currently i am using GooglePlayGamesPlugin-0.9.50 downloaded from the Github https://github.com/playgameservices/play-games-plugin-for-unity.
I implemented the SignIn as in my Code
private void Start()
{
// recommended for debugging:
PlayGamesPlatform.DebugLogEnabled = true;
// Activate the Google Play Games platform
PlayGamesPlatform.Activate();
}
public void SignIn()
{
Social.localUser.Authenticate(success =>
{
if (success)
{
}
else
{
SignIn();
}
});
}
I Setup the game Play Services using Window > Google playgames > android setup and pasted the resources which i copied from the Game services Dashboard
After this i made signed APK and upload to the Store and add tester for the playgames.
Now, When i click the sigin Button in my game nothing happens like showing signin UI etc.
For testing i just print text on the screen but code run without error message and calls sigin.
Then I explore different questions but didnot get any help.
Links Visited:
https://answers.unity.com/questions/1211515/showing-google-play-game-leaderboard-ui-not-workin.html https://github.com/playgameservices/play-games-plugin-for-unity/issues/1970 https://github.com/playgameservices/play-games-plugin-for-unity/issues/1945 https://github.com/playgameservices/play-games-plugin-for-unity/issues/1940
After this i updated mt SDK but same Results nothing happen on sign call.
The SHA1 which i got using command line is the correct one on the developer conole.
any hepl will be appreciated thanks in advance.
Answer by EmmanuelAyilara · Sep 13, 2020 at 09:07 PM
@ SohailBukhari were you able to solve this issue?
Your answer
Follow this Question
Related Questions
Google Play Games Services not showing achievements list and leaderboards even in Play Games app 1 Answer
Showing Google Play Game Leaderboard UI not working at all 4 Answers
Error : Didn't find class "com.google.android.gms.ads.MobileAds" 0 Answers
iOS Player Not visible on Google Play Games' Public Leaderboard 4 Answers
Google Play Services authentication problem. Failing to sign in ! 6 Answers