diff options
author | Paul Frazee <pfrazee@gmail.com> | 2022-11-23 13:34:45 -0600 |
---|---|---|
committer | Paul Frazee <pfrazee@gmail.com> | 2022-11-23 13:34:45 -0600 |
commit | d09bf31431f2f8341fa5f2a590c66168b1755add (patch) | |
tree | 28d507e57fb305e95f27d89acb073701a4e8da77 /ios | |
parent | 1370353ff601ec06c7ea8ee4e603c08d238c96dd (diff) | |
download | voidsky-d09bf31431f2f8341fa5f2a590c66168b1755add.tar.zst |
Disable landscape orientation in iPhones
Diffstat (limited to 'ios')
-rw-r--r-- | ios/app/Info.plist | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/ios/app/Info.plist b/ios/app/Info.plist index 16c540e32..416d55759 100644 --- a/ios/app/Info.plist +++ b/ios/app/Info.plist @@ -59,8 +59,12 @@ <key>UISupportedInterfaceOrientations</key> <array> <string>UIInterfaceOrientationPortrait</string> + </array> + <key>UISupportedInterfaceOrientations~ipad</key> + <array> <string>UIInterfaceOrientationLandscapeLeft</string> <string>UIInterfaceOrientationLandscapeRight</string> + <string>UIInterfaceOrientationPortrait</string> </array> <key>UIViewControllerBasedStatusBarAppearance</key> <false/> |