Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I try to test Game Center in my iPhone game, but when i try to connect whit the following lines of code i get a alert that says "This game is not recognized by Game Center.".

[[GKLocalPlayer localPlayer] authenticateWithCompletionHandler:^(NSError *error) {
    if (error == nil)
    {
        // Insert code here to handle a successful authentication.
    }
    else
    {
        // Your application can process the error parameter to report the error to the player.
    }
}];

Now i've read many forums and look at the Apple documentation, but i can't find how i can enable the Game Center option at iTunes connect. I think i need to first add an application to "Manage application" and then enable the Game Center option. But how can i add an application only for testing?

Thanks for any help :)

share|improve this question

2 Answers

I am testing an iPad app with the iPad simulator. I was having a similar problem.

I had followed all the steps as specified in the "Game Kit Programming Guide", including setting up iTunes Connect. Even so I was still getting the error message: This game is not recognized by game center"

My app was only recognized when I deleted it from the simulator and re-installed it, as suggested by iMuller.

share|improve this answer

I think the problem was in wrong cocos2d version. After moving to v0.99.5 game center started working.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.