So I have been trying to submit scores to my leaderboard with a Unity game for Android.
I have been using the following plugin https://github.com/playgameservices/play-games-plugin-for-unity
Now do I have the followin code:
Social.ReportScore(Global.score, "LeaderbordID", success => { Debug.Log(success ? "Reported score successfully" : "Failed to report score"); });
That is supposed to work, but it doesn't. The error messages the code gives are non-existing, I get a false message. Logging in works fine, so he is connected. Any ideas where I can look for? My leaderboard ID is correct, I'm using that to show the leaderboards when asked.