- Home /
Question by
saadjumani · Apr 20, 2021 at 09:24 AM ·
pluginsgoogle play gamesloginleaderboards
How to view detailed errors related to Google Play Games APIs
I have been trying to integrate google games into my app using GooglePlayGames plugin. The code to authenticate/sign in a user looks something like this:
public void LogIn ()
{
Social.localUser.Authenticate ((bool success) =>
{
if (success) {
Debug.Log ("Login Sucess");
} else {
Debug.Log ("Login failed");
}
});
}
Problem is that this kind of debugging only shows if its successful or not. How can I view a more detailed error so that I can actually sort out the issue?
Comment