Application is not recognized by Game Center after build with Xcode 6.0.1

I created my game application on Xcode 5.1. The Game Center code is already installed, and I already configured the application via iTunes Connect (for example, creating an application record, setting the package identifier, setting the game center leaderboards).

I got an application that works successfully with Game Center when I was in Xcode 5.1. The ratings will tell the leaderboards how it should be, and I can see the entries in the leaderboard, etc.

I decided to install Xcode 6.0.1 today. I basically compiled my project with this new version of Xcode. But now, when I run my application, I get this from my log:

GameKitHelper ERROR: { NSLocalizedDescription = "The requested operation could not be completed because this application is not recognized by Game Center."; 

}

My app is no longer recognized by Game Center. Everything is the same. I have not changed anything. Just compile and run, and that is it.

Does anyone encounter this issue when compiling and running Game Center applications in Xcode 6.0.1?

+6
source share
2 answers

Well, I can understand why. Forgot to mention that I upgraded my iOS test device to 8.0.

It turns out that you need to go to "Settings"> "Game Center" and manually turn on "Sandbox".

Now I have worked. Hope this helps anyone facing this issue.

+33
source

You had the same problem, but Sandbox is already on. I changed the login to the same Apple ID as in iCloud and for GameCenter. Now it works again.

I am using Xcode 6.4 and iOS 8.4

0
source

Source: https://habr.com/ru/post/975489/


All Articles