There are 4 LeaderBoards in my application. I add a rating to one of them:
Games.Leaderboards.submitScore(mGoogleApiClient, "xxxx", 10);
Now I would like to see the results:
startActivityForResult(Games.Leaderboards.getLeaderboardIntent(mGoogleApiClient,
"xxxx"),REQUEST_LEADERBOARD);
The action starts and its contents are loaded, but it automatically closes before loading. The other three Leaderboards work fine, and I can open them (until I add a grade to them).
I implemented onActivityResult
protected void onActivityResult(int requestCode, int resultCode,
Intent intent)
The result code is 10001, which means RESULT_RECONNECT_REQUIRED, but reconnecting does not help. What helps restore the application ...
source
share