Browse Source

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
pull/4169/head
Bubio 4 years ago committed by Anders Jenbo
parent
commit
16df16277a
  1. 24
      Packaging/apple/Info.plist

24
Packaging/apple/Info.plist

@ -50,5 +50,29 @@
<true/>
<key>CADisableMinimumFrameDurationOnPhone</key>
<true/>
<key>UIDeviceFamily</key>
<array>
<integer>1</integer>
<integer>2</integer>
</array>
<key>UIRequiresFullScreen</key>
<true/>
<key>UIStatusBarHidden</key>
<true/>
<key>UISupportedInterfaceOrientations</key>
<array>
<string>UIInterfaceOrientationLandscapeLeft</string>
<string>UIInterfaceOrientationLandscapeRight</string>
</array>
<key>UISupportedInterfaceOrientations~ipad</key>
<array>
<string>UIInterfaceOrientationLandscapeLeft</string>
<string>UIInterfaceOrientationLandscapeRight</string>
</array>
<key>UIApplicationSceneManifest</key>
<dict>
<key>UIApplicationSupportsMultipleScenes</key>
<false/>
</dict>
</dict>
</plist>

Loading…
Cancel
Save