Hello everyone ,
i am using google games plugin in my game. When i tried to call the authenticate function (LOGIN) , nothing happens not even a login pop up shows . I did everything that was said in the document .The app is live on playstore with game services implemented and signed apk. But nothing happens not even login pop-up shows. Please help me that would be very grateful . Thank you
PlayGamesClientConfiguration config = new PlayGamesClientConfiguration.Builder()
.RequestEmail()
.Build();
PlayGamesPlatform.InitializeInstance(config);
PlayGamesPlatform.DebugLogEnabled = true;
PlayGamesPlatform.Activate();
Social.localUser.Authenticate((bool success) =>
{
if (success)
{
print(“Login”)
}
});
