Following the deprecation of the Google Sign-In API, we are removing the games v1 SDK in 2026. After February 2025, you will be unable to publish titles that are newly integrated with games v1 SDK, on Google Play. We recommend that you use the games v2 SDK instead.
While existing titles with the previous games v1 integrations continue to function for a couple of years, you are encouraged to migrate to v2 starting June 2025.
Leaderboards.SubmitScoreResult
Stay organized with collections
Save and categorize content based on your preferences.
This interface is deprecated.
ScoreSubmissionData
is returned directly in the LeaderboardsClient
.
Result delivered when a leaderboard score has been submitted. The statusCode indicates
whether or not the score was successfully submitted to the servers.
Possible status codes include:
Inherited Method Summary
From interface com.google.android.gms.common.api.Result
From interface
com.google.android.gms.common.api.Releasable
Public Methods
Returns
- Data about the score that was submitted and the response from the server.
Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution 4.0 License, and code samples are licensed under the Apache 2.0 License. For details, see the Google Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates.
Last updated 2025-01-24 UTC.
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2025-01-24 UTC."],[[["`Leaderboards.SubmitScoreResult` is deprecated and replaced by `ScoreSubmissionData` returned directly from `LeaderboardsClient`."],["This interface provides the result of a leaderboard score submission with various status codes indicating success or failure."],["Possible status codes include `STATUS_OK`, `STATUS_NETWORK_ERROR_OPERATION_DEFERRED`, `STATUS_CLIENT_RECONNECT_REQUIRED`, `STATUS_LICENSE_CHECK_FAILED`, and `STATUS_INTERNAL_ERROR`."],["The `getScoreData()` method returns information about the submitted score and the server's response."]]],["The `Leaderboards.SubmitScoreResult` interface, now deprecated, was used to deliver results after submitting a leaderboard score. It indicated submission success or failure via status codes, including `STATUS_OK`, `STATUS_NETWORK_ERROR_OPERATION_DEFERRED`, `STATUS_CLIENT_RECONNECT_REQUIRED`, `STATUS_LICENSE_CHECK_FAILED`, and `STATUS_INTERNAL_ERROR`. `getScoreData()` retrieves `ScoreSubmissionData` detailing the submitted score. `getStatus()` and `release()` are inherited methods. Now, `ScoreSubmissionData` is delivered directly through `LeaderboardsClient`.\n"]]