Last active
October 24, 2024 04:54
-
-
Save aheze/fe11e259f78c4716897a599e01e593e2 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="UTF-8"?> | |
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
<plist version="1.0"> | |
<dict> | |
<key>CFBundleShortVersionString</key> | |
<string>1.0</string> | |
<key>CFBundleIdentifier</key> | |
<string>com.YourName.YourAppName</string> | |
<key>CFBundleVersion</key> | |
<string>1</string> | |
<key>UILaunchScreen</key> | |
<dict> | |
<key>UILaunchScreen</key> | |
<dict/> | |
</dict> | |
<key>UIApplicationSupportsIndirectInputEvents</key> | |
<true/> | |
<key>CFBundleName</key> | |
<string>YourAppName</string> | |
<key>LSRequiresIPhoneOS</key> | |
<true/> | |
<key>UISupportedInterfaceOrientations~iphone</key> | |
<array> | |
<string>UIInterfaceOrientationPortrait</string> | |
<string>UIInterfaceOrientationLandscapeLeft</string> | |
<string>UIInterfaceOrientationLandscapeRight</string> | |
</array> | |
<key>CFBundleExecutable</key> | |
<string>YourAppName</string> | |
<key>UIApplicationSceneManifest</key> | |
<dict> | |
<key>UIApplicationSupportsMultipleScenes</key> | |
<true/> | |
</dict> | |
<key>UISupportedInterfaceOrientations~ipad</key> | |
<array> | |
<string>UIInterfaceOrientationPortrait</string> | |
<string>UIInterfaceOrientationPortraitUpsideDown</string> | |
<string>UIInterfaceOrientationLandscapeLeft</string> | |
<string>UIInterfaceOrientationLandscapeRight</string> | |
</array> | |
</dict> | |
</plist> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This is the default
Info.plist
content for Xcode 14.3