Skip to content

Commit

Permalink
split view support for ipad
Browse files Browse the repository at this point in the history
  • Loading branch information
lcflight committed Feb 6, 2024
1 parent 0091bc2 commit 0cf95c5
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 1 deletion.
3 changes: 2 additions & 1 deletion app.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@
"slug": "taskratchet-mobile",
"ios": {
"bundleIdentifier": "com.taskratchet.mobile",
"buildNumber": "1.0.0"
"buildNumber": "1.0.0",
"requiresFullScreen": false
},
"android": {
"package": "com.taskratchet.mobile",
Expand Down
2 changes: 2 additions & 0 deletions ios/mobile.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -679,6 +679,7 @@
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
GCC_WARN_UNUSED_FUNCTION = YES;
GCC_WARN_UNUSED_VARIABLE = YES;
INFOPLIST_KEY_UIRequiresFullScreen = NO;
IPHONEOS_DEPLOYMENT_TARGET = 13.0;
LD_RUNPATH_SEARCH_PATHS = (
/usr/lib/swift,
Expand Down Expand Up @@ -755,6 +756,7 @@
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
GCC_WARN_UNUSED_FUNCTION = YES;
GCC_WARN_UNUSED_VARIABLE = YES;
INFOPLIST_KEY_UIRequiresFullScreen = NO;
IPHONEOS_DEPLOYMENT_TARGET = 13.0;
LD_RUNPATH_SEARCH_PATHS = (
/usr/lib/swift,
Expand Down
7 changes: 7 additions & 0 deletions ios/mobile/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -43,9 +43,16 @@
</array>
<key>UISupportedInterfaceOrientations</key>
<array>
<string>UIInterfaceOrientationLandscapeLeft</string>
<string>UIInterfaceOrientationLandscapeRight</string>
<string>UIInterfaceOrientationPortrait</string>
</array>
<key>UISupportedInterfaceOrientations~ipad</key>
<array>
<string>UIInterfaceOrientationLandscapeLeft</string>
<string>UIInterfaceOrientationLandscapeRight</string>
<string>UIInterfaceOrientationPortrait</string>
<string>UIInterfaceOrientationPortraitUpsideDown</string>
</array>
<key>UIViewControllerBasedStatusBarAppearance</key>
<false/>
Expand Down

0 comments on commit 0cf95c5

Please sign in to comment.