Skip to content

Commit

Permalink
feat: enable ipad orientation (#1430)
Browse files Browse the repository at this point in the history
Signed-off-by: Jason C. Leach <jason.leach@fullboar.ca>
  • Loading branch information
jleach authored Sep 7, 2023
1 parent 960d262 commit 28c177d
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 20 deletions.
45 changes: 26 additions & 19 deletions app/ios/AriesBifold/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,6 @@
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>UIRequiresFullScreen</key>
<true/>
<key>NSFaceIDUsageDescription</key>
<string>$(PRODUCT_NAME) wants to use your FaceID/TouchID to authenticate your identity</string>
<key>CFBundleDevelopmentRegion</key>
<string>en</string>
<key>CFBundleDisplayName</key>
Expand All @@ -24,6 +20,21 @@
<string>$(MARKETING_VERSION)</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleURLTypes</key>
<array>
<dict>
<key>CFBundleURLSchemes</key>
<array>
<string>bcwallet</string>
</array>
</dict>
<dict>
<key>CFBundleURLSchemes</key>
<array>
<string>didcomm</string>
</array>
</dict>
</array>
<key>CFBundleVersion</key>
<string>$(CURRENT_PROJECT_VERSION)</string>
<key>ITSAppUsesNonExemptEncryption</key>
Expand All @@ -45,6 +56,8 @@
</dict>
<key>NSCameraUsageDescription</key>
<string>Camera used for in-app QR Code scanning</string>
<key>NSFaceIDUsageDescription</key>
<string>$(PRODUCT_NAME) wants to use your FaceID/TouchID to authenticate your identity</string>
<key>NSLocationWhenInUseUsageDescription</key>
<string></string>
<key>UIAppFonts</key>
Expand All @@ -62,26 +75,20 @@
<array>
<string>armv7</string>
</array>
<key>UIRequiresFullScreen</key>
<true/>
<key>UISupportedInterfaceOrientations</key>
<array>
<string>UIInterfaceOrientationPortrait</string>
</array>
<key>UIViewControllerBasedStatusBarAppearance</key>
<false/>
<key>CFBundleURLTypes</key>
<key>UISupportedInterfaceOrientations~ipad</key>
<array>
<dict>
<key>CFBundleURLSchemes</key>
<array>
<string>bcwallet</string>
</array>
</dict>
<dict>
<key>CFBundleURLSchemes</key>
<array>
<string>didcomm</string>
</array>
</dict>
<string>UIInterfaceOrientationLandscapeLeft</string>
<string>UIInterfaceOrientationLandscapeRight</string>
<string>UIInterfaceOrientationPortrait</string>
<string>UIInterfaceOrientationPortraitUpsideDown</string>
</array>
<key>UIViewControllerBasedStatusBarAppearance</key>
<false/>
</dict>
</plist>
2 changes: 1 addition & 1 deletion bifold

0 comments on commit 28c177d

Please sign in to comment.