Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

`Leaderboard` tab not showing in Google Play Games while `Achievements` tab is there

I have enabled and added a leaderboard and achievements to my game. The leaderboard tab is not being displayed in Google Play Games, but the achievement tab is. I've read that the app needs to gain enough attention? What does that mean exactly? And how am I supposed to test this feature?

This is an example from the web

It shows the achievements tab, but as you can see, to the right, is a Leaderboards tab.

Leaderboards

like image 659
Z0q Avatar asked Feb 03 '16 13:02

Z0q


People also ask

How do I add a Google leaderboard?

Create a leaderboard for a new game To create a leaderboard for a new and unpublished game, go to the Google Play Console entry for your game, and navigate to Grow > Play Games Services > Setup and management > Leaderboards, then click the Create leaderboard button.

How do I unlock achievements in Google Play?

Define the achievements that you want your game to unlock or display, by following the instructions in the Google Play Console guide. Download and review the achievements code samples in the Android samples page. Familiarize yourself with the recommendations described in Quality Checklist.

How do you tell if a game has Google Play achievements?

The best way to keep track of them is to use the Google Play Games app for Android. This app is the global window to gaming on mobile. This app will let you see all of the games you have played and view the achievements for them. It will also let you find other games that have support for Google Play Games.


2 Answers

For your question it seems that you are trying to Find LeaderBoard in achievement Tab

LeaderBoard and Achievement are not shown Simultaneously u need to show LeaderBoard differently by calling

startActivityForResult(Games.Leaderboards.getLeaderboardIntent(
                getApiClient(), getResources().getString(
                        **R.string.your_leaderboard_id**)), REQUEST_LEADERBOARDS);

and For achievement it is

startActivityForResult(Games.Achievements.getAchievementsIntent(
                        getApiClient()), REQUEST_ACHIEVEMENTS);
like image 105
JAAD Avatar answered Oct 04 '22 19:10

JAAD


I contacted Google support directly. They told me that my app did not pass their threshold of Google Play Games users. They decided to keep it a secret where the threshold is.

like image 24
Z0q Avatar answered Oct 04 '22 21:10

Z0q