The quality of your game influences the long-term success of your game -- in terms of installs, player rating and reviews, engagement and player retention. Before publishing your game, it's important to make sure that your game meets the basic expectations of game players through compelling features and an intuitive, well-designed UI.
This document helps you focus on key aspects of quality, feature set, and UI that can have significant impact on your game's success. Each focus area is presented with a checklist of minimum requirements, best practices, and good-to-have enhancements. In the interest of delivering the best possible product to your players, follow the checklist recommendations to the greatest extent possible.
1. Sign-in
The following checklist tasks apply to implementing player sign-in functionality in your game. Learn more about how sign-in works and how you should implement it in Sign-in concepts. For code examples of how to implement sign-in on mobile games, see Implementing Sign-in on Android.
ID | Importance | Description |
---|---|---|
1.1 | Required |
Sign players in with Google Play Games Services.
|
1.2 | Good-to-have |
Follow Google branding guidelines.
To provide players with an end-to-end experience that is attractive and consistent, implement the Google Play Games Services branding guidelines. |
1.3 | Good-to-have |
Remind players that they are signed-in.
Give signed-in players an appropriate reminder or cue when your game performs some action on their behalf. For example, when a signed-in player finishes a level, you can provide a message like this to indicate that the player's score and achievements are being automatically uploaded: "You are signed-in with Google. Your achievements and scores will be saved automatically." |
1.4 | Required |
Back up player progress using the Play Games Services ID.
To ensure players do not lose their progress when switching or resetting devices, or if they play on multiple devices, ensure their progress is backed up to a Cloud Save solution, and use the Play Games Services ID as a key, securely if using your own backend game server. When players sign in with their Play Games Services ID, check whether progress exists for that account and if it does, allow the player to pick up where they left off. You can use your own cloud save solution or Play Games Services saved games. If the user is not signed in, try to maintain the player's progress locally, then sync that progress when the player eventually signs in. This helps to prevent losing any of the player's progress if the player postpones signing in to your game. |
2. Achievements
The following checklist tasks apply to implementing the Achievements feature in your game.
ID | Importance | Description |
---|---|---|
2.1 | Required | Ensure that all achievements are attainable.
Players must be able to unlock all achievements you create. |
2.2 | Best practice | Make achievements distinct.
All images, text, and descriptions should be unique across achievements. |
2.3 | Best practice | Score achievements proportionately.
Achievement points should be proportional to the amount of time or skill required to earn that achievement. |
2.4 | Best practice | Design achievements for a variety of difficulty levels.
Include some easy achievements that a player could earn through casual gameplay, a number of intermediate difficulty achievements that require more skill or player dedication to earn, and one or two very difficult achievements for the most dedicated players. For example, the following screenshot shows a hard-to-earn achievement that helps to motivate and retain fans of the title. |
2.5 | Good-to-have | Don't frontload achievements.
Avoid awarding more than one achievement in the first 5 minutes of gameplay, since players who are new to your game won't be deeply invested enough to care. Don't define your achievements such that they are unintentionally granted too early in gameplay. For example, watch out for achievements that are likely to be trivially earned at the start of the game, like "Complete a level without taking damage". |
2.6 | Good-to-have | Define achievements around compelling in-game activities.
Select metrics to build achievements that make your game more compelling and replayable (for example, "number of zombies killed" is a more interesting metric than "number of miles your character walked”). |
2.7 | Good-to-have | Use color achievement icons.
Play Games Services uses grayscale versions of achievement icons to show if they're earned or unearned. If you are restricted to using all black (or all white) achievement icons, display them on a colored background. |
2.8 | Good-to-have | Minimize the use of hidden achievements.
Hidden achievements should only be used to avoid in-game spoilers; they should not be the norm. |
2.9 | Good-to-have | Avoid achievements that are too reliant on chance.
"Find 100 treasure chests" is a better achievement than "Find an item that has a 1% chance of appearing in a treasure chest." |
2.10 | Good-to-have | Think like an 'Achievement Hunter’.
Some players will attempt to earn every achievement you create. Try to provide achievements that cater to this category of players. Avoid creating achievements that rely too much on elements beyond the player's control or cannot be earned once the player has made a decision in the game. |
2.11 | Good-to-have | Ensure your achievement icon appears correctly.
When an achievement icon is displayed in an Android toast, the icon is overlaid with a circle and its outer corners are hidden. Make sure that your icon still looks good under these circumstances. |
3. Leaderboards
The following checklist tasks apply to implementing the Leaderboards feature in your game.
ID | Importance | Description |
---|---|---|
3.1 | Best practice | Make leaderboards visible in your main menu and after key
transitions. Leaderboards should be readily accessible on the loading of a game. After critical transitions in a game (for example, at the end of a level, or when the player dies), players should immediately see links to the relevant leaderboards. |
3.2 | Best practice | Define upper limits for scores that can be submitted.
If possible, add limits when defining your leaderboards so that obviously fake scores are discarded. |
3.3 | Best practice | Use custom icons.
Create a custom icon for each leaderboard you define; don't just use your game's icon, as it will display poorly in the Google Play Games app. |
3.4 | Best practice | Keep the frequency of score submissions appropriate.
Submit scores after critical transitions in the game, such as at the end of a level or when a player's game character dies. For games without critical transitions (for example, an "endless runner" type game), use good judgment on how frequently to submit scores. Scores should not be submitted continuously or every second. |
3.5 | Good-to-have | Make use of scoretags. Scoretags are extra bits of data that can be sent with your score submission. For instance, you can implement a scoretag as a flag to confirm that a player's submitted score is valid. Custom leaderboards can also read this tag data. If the scoretag consisted of an ID for a YouTube video containing that player's gameplay, for instance, your game could create a link to view that video within your leaderboard. |
3.6 | Good-to-have | Creatively design your own leaderboard UI
If you have the resources, build your own custom leaderboard view on top of the social leaderboard data. Social leaderboards typically create a more engaging experience than public leaderboards. Check first to determine if there are any entries in the social leaderboard. If not, use the public leaderboard instead. |
3.7 | Good-to-have | Show players how they stack up against the competition.
The leaderboards API supports showing score windows (for example, a player's rank within +/-10 spots). If you are creating a custom view, this can be a powerful way to motivate engagement. This could be shown right after a critical transition in the game (for example, at the end of a level or when a player's game character dies). Avoid putting unnecessary clicks between your players and their ranking information. |
4. Friends
The following checklist tasks apply to implementing the Friends service in your game.
ID | Importance | Description |
---|---|---|
4.1 | Required | When players are displayed in a list, show the Play Games Services icon
next to users who have a Play Games profile.
This list could be an existing friends list, a recently-played friends list, or other list of friends.
|
4.2 | Best practice | Use different icons to show which Play Games users are already friends,
and which are not yet Play Games friends but have signed in with Play Games.
Use two icons for Play Games users, one for "Friends" and one for
"Not friends" (or when the friendship status is unknown).
|
4.3 | Best practice | Call loadFriends() every time you sign-in and display the list of
friends to ensure the friends list is up-to-date. Make sure players see
the updated list.
|
4.4 | Best practice | If your game already contains in-game friends, use the Friends service to increase the list of friends by adding the Play Games friends. If a player is in the in-game friends list and they are also a Play Games friend, show the icon for "Friends". |
4.5 | Best practice | If a player has denied the request to access their friends list, don't show the dialog asking for access again unless the user has taken an action to indicate they want to give access (for example, pressing an **Import Play Games Friends** button). |
4.6 | Best practice | If a player has denied access to the friends list, give them a way to grant friends list access in the future (for example, after pressing an **Import Play Games Friends** button). |
4.7 | Best practice | If you use the player ID or friends list with a backend server, you
must access the ID or list securely.
In addition, for some older games and players, the player ID returned by
the Android SDK for a player may not be the same ID that other
players see when viewing that player in the same game; this is particularly
relevant when using the friends list. However, the player_id
returned within the REST API is always consistent and is always the ID
that is visible to other players.
|
5. Quota and rate limiting
The following checklist tasks apply to managing the quota and rate limiting in your game. To learn how to manage your game's quota and detect when its rate limit is exceeded, see Managing Quota and Rate Limiting.
ID | Importance | Description |
---|---|---|
5.1 | Best practice |
Use the client libraries.
The mobile client libraries employ a number of strategies to reduce the calls you make to the service. For instance, data for achievements and leaderboards is cached, so players can view their achievements as often as they like without requiring the service to make multiple calls. The Android client library will not to send a player's score to the server if your score isn't as good as one you recently submitted. The Android library also automatically combines frequent achievement increment calls when it detects that you are being rate limited. |
5.2 | Good-to-have |
Combine frequent calls to incremental achievements.
If you're making a fighting game and you have a 'Throw 5000 punches'
achievement, don't send an achievement increment call every time somebody
throws a punch. Wait until the end of the round, and then send one
|
5.3 | Good-to-have |
Be aware of your usage.
Be conscious of the number of calls you make to Google Play Games Services. Even if you avoid hitting rate limits, frequent calls can lead to high network traffic, and cause the device's battery to drain more rapidly. To avoid this, you can use these techniques:
|
6. Saved games
The following checklist tasks apply to implementing the Saved Games feature in your game.
ID | Importance | Description |
---|---|---|
6.1 | Required |
Add metadata to provide additional context for saved games.
At minimum, you must include the following metadata when committing a saved game:
|
6.2 | Required |
Allow players to load saved games.
Load the correct saved game when players make a selection from either the Play Games app or the default Saved Games selection UI. |