From 16df16277a3a3a56fb29937211bb4f43f2ea8ac0 Mon Sep 17 00:00:00 2001 From: Bubio Date: Sat, 1 Jan 2022 18:04:13 +0900 Subject: [PATCH] Fixed an issue that caused the app to run as an iPhone app on iPad. - Redo PR #3764 - To run as an iPad app, the UIDeviceFamily key is required in Info.plist. https://discord.com/channels/518540764754608128/518541192993046562/920602213901025300 --- Packaging/apple/Info.plist | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/Packaging/apple/Info.plist b/Packaging/apple/Info.plist index 8e1593dab..478126317 100644 --- a/Packaging/apple/Info.plist +++ b/Packaging/apple/Info.plist @@ -50,5 +50,29 @@ CADisableMinimumFrameDurationOnPhone + UIDeviceFamily + + 1 + 2 + + UIRequiresFullScreen + + UIStatusBarHidden + + UISupportedInterfaceOrientations + + UIInterfaceOrientationLandscapeLeft + UIInterfaceOrientationLandscapeRight + + UISupportedInterfaceOrientations~ipad + + UIInterfaceOrientationLandscapeLeft + UIInterfaceOrientationLandscapeRight + + UIApplicationSceneManifest + + UIApplicationSupportsMultipleScenes + +