java - Android - score not being submitted to a leaderboard -
recently, i've added leaderboards android project , worked fine until tried submit score it. google play services configured correctly , can view leaderboard cannot submit
games.leaderboards.submitscoreimmediate(getapiclient(),string.valueof(r.string.leaderboard_id), score);
since doubt error visibe line , since logcat displays no data related score submission, wondering how check score submitted correctly. thanks.
i don't know score submission leaderboards - error might visible line:
string.valueof(r.string.leaderboard_id)
is not giving string specified in strings.xml file, string containing internal android id string "1234567". string file should use
getcontext().getstring(r.string.leaderboard_id)
Comments
Post a Comment