RCH
RCH

Reputation: 1309

Google Play Game Services - Leaderboard closes authomatically

I've got 4 LeaderBoards in my application. I add score to one of them with:

Games.Leaderboards.submitScore(mGoogleApiClient, "xxxx", 10);

Now I would like to see results:

   startActivityForResult(Games.Leaderboards.getLeaderboardIntent(mGoogleApiClient,
                "xxxx"),REQUEST_LEADERBOARD);

Activity starts and it's loading its content but it closes automaticaly before anything is loaded. Other three Leaderboards works fine and I can open them (until I add score to them).

I implemented onActivityResult

protected void onActivityResult(int requestCode, int resultCode,
                                Intent intent)

Result code is 10001 which means RESULT_RECONNECT_REQUIRED, but reconnection doesn't help. What helps is reinstalation of app...

Upvotes: 5

Views: 591

Answers (1)

Android Enthusiast
Android Enthusiast

Reputation: 4960

You're using Leaderboards correctly. A similar issue was raised with calling Achievements (it even has the same result code you have!) and was handled by uninstalling updates and clearing data. Hope this helps!

Upvotes: 3

Related Questions