I have the same problem as this (Google Play Games - "There are no public high score for this game") but as it was not answered by anyone I couldnt figure out any answers.
I am using Easy Mobile Pro with Unity.
I do get the debug: "Reported score successfully" but when I open the leaderboard but it is completely empty with the message: "There are no public high scores for this game."
Any help is appreciated.
this is my code for the show leaderboard:
else if (buttonName == "ButtonLeaderBoard")
{
Debug.Log("Score:" + PlayerPrefs.GetInt("totalratings"));
Social.ShowLeaderboardUI();
and this is my code to report the score to the leaderbaord:
if (!Application.isEditor)
{
Social.ReportScore(PlayerPrefs.GetInt("totalratings"), Common.gpHighScoresGlobalId, success =>
{
Debug.Log(success ? "Reported score successfully" : "Failed to report score");
});
}