hey all, i have build a game in android. and to put in the score section i am using the score ninja adapter API. i have done all the things told on the score ninja website but every time i tries to show the score card . it tells me that "Sorry,there was a problem loading the score card". the method i am using is scoreNinjaAdapter.show(200); here i have put 200 as an arbitrary score and i am supposing that it should wo开发者_JAVA技巧rk but it never seems to work otherwise there is no error or exception. can any body help me out or show me some kind of example .. i am totally stuck here
I was curious about ScoreNinja, so I took a quick look at this problem. Looking at the ScoreNinja source, the message "Sorry,there was a problem loading the score card", will show up if the score adapter can't fetch your scores. I put together a quick example and the only way I was able to make this happen was by providing a bad ID and Private Key to the ScoreNinjaAdapter constructor.
If you are still looking for an example, here is my code https://gist.github.com/815227
精彩评论