Add Game Mode support with LSSupportsGameMode

- Added LSSupportsGameMode=true to both iOS and tvOS Info.plist files
- LSSupportsGameMode is supported on iOS 18.6+/iPadOS 18.6+/macOS 26.0+
- GCSupportsGameMode key is marked as deprecated, so I haven't added it
This commit is contained in:
Michael Pishchagin
2025-08-25 21:46:20 +10:00
committed by Cameron Gutman
parent da47035525
commit 85af0f7562
2 changed files with 4 additions and 0 deletions

View File

@@ -35,6 +35,8 @@
</array> </array>
<key>GCSupportsControllerUserInteraction</key> <key>GCSupportsControllerUserInteraction</key>
<true/> <true/>
<key>LSSupportsGameMode</key>
<true/>
<key>ITSAppUsesNonExemptEncryption</key> <key>ITSAppUsesNonExemptEncryption</key>
<false/> <false/>
<key>LSApplicationCategoryType</key> <key>LSApplicationCategoryType</key>

View File

@@ -54,6 +54,8 @@
<array> <array>
<string>arm64</string> <string>arm64</string>
</array> </array>
<key>LSSupportsGameMode</key>
<true/>
<key>UIUserInterfaceStyle</key> <key>UIUserInterfaceStyle</key>
<string>Dark</string> <string>Dark</string>
</dict> </dict>