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...