Post not yet marked as solved
Post marked as unsolved with 0 replies, 175 views
I have an app in development that uses GameKit to show leaderboards and achievements. All seem to work well until I added Achievements. Now not only does the new achievements not show up, I am unable to also add any new leaderboards to the app.
(Error Domain=GKErrorDomain Code=3 "The requested operation could not be completed due to an error communicating with the server." UserInfo={GKServerStatusCode=5044, NSLocalizedDescription=The requested operation could not be completed due to an error communicating with the server., NSUnderlyingError=0x283ee3510 {Error Domain=GKServerErrorDomain Code=5044 "status = 5044, App does not support achievements" UserInfo={GKServerStatusCode=5044, NSLocalizedFailureReason=status = 5044, App does not support achievements}}})
This is what I am seeing on my console when I do
GKAchievement.loadAchievements { (achievements, error) in
if error != nil {
print("Error \(error)")
} else {
print("\(achievements)")
}
}
I have tried everything including adding a new leaderboard, removing, reordering etc..
What am I missing here ?