From 13b34c11536c013e2e05f6737b583113b3df1b21 Mon Sep 17 00:00:00 2001 From: Scott Harrison Date: Wed, 20 Dec 2023 16:58:00 -0600 Subject: [PATCH] Update to Game Center Documentation --- markdown/plugin/gameNetwork-apple/index.markdown | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/markdown/plugin/gameNetwork-apple/index.markdown b/markdown/plugin/gameNetwork-apple/index.markdown index 46856a3ea..966dd20fb 100644 --- a/markdown/plugin/gameNetwork-apple/index.markdown +++ b/markdown/plugin/gameNetwork-apple/index.markdown @@ -12,6 +12,14 @@ [Game Center](https://developer.apple.com/game-center/) lets friends in on the action with leaderboards and achievements. The nomenclature used in the CORONA_CORE_PRODUCT APIs for Game Center attempt to match the official Game Center APIs as much as possible, allowing you to cross-reference with official Game Center documentation. +
+
Important
+ +* As of August 16, 2023, new apps and app updates that offer Game Center features need to include the Game Center entitlement. See Project Settings below and enable Game Center Support for Apple App ID Configuration. + +
+ + ## Gotchas Game Center is not supported in the simulator. @@ -32,6 +40,8 @@ Game Center is not supported in the simulator. To use this plugin, add an entry into the `plugins` table of `build.settings`. When added, the build server will integrate the plugin during the build phase. +Also be sure to add the iPhone entitlement table as seen below + ``````lua settings = { @@ -42,6 +52,11 @@ settings = publisherId = "com.coronalabs" }, }, + iphone = { + entitlements = { + ["com.apple.developer.game-center"] = true, + }, + } } `````` ## Sample project