Created
September 17, 2018 00:02
-
-
Save pablitar/6a14c65202dd1eaefb9807ec5ed4cb77 to your computer and use it in GitHub Desktop.
This file contains hidden or 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>CFBundleDevelopmentRegion</key> | |
<string>en</string> | |
<key>CFBundleDisplayName</key> | |
<string>${app.name}</string> | |
<key>CFBundleExecutable</key> | |
<string>${app.executable}</string> | |
<key>CFBundleIdentifier</key> | |
<string>${app.id}</string> | |
<key>CFBundleInfoDictionaryVersion</key> | |
<string>6.0</string> | |
<key>CFBundleName</key> | |
<string>${app.name}</string> | |
<key>CFBundlePackageType</key> | |
<string>APPL</string> | |
<key>CFBundleShortVersionString</key> | |
<string>${app.version}</string> | |
<key>CFBundleSignature</key> | |
<string>????</string> | |
<key>CFBundleVersion</key> | |
<string>${app.build}</string> | |
<key>LSRequiresIPhoneOS</key> | |
<true/> | |
<key>UIViewControllerBasedStatusBarAppearance</key> | |
<false/> | |
<key>UIStatusBarHidden</key> | |
<true/> | |
<key>UIDeviceFamily</key> | |
<array> | |
<integer>1</integer> | |
<integer>2</integer> | |
</array> | |
<key>UIRequiredDeviceCapabilities</key> | |
<array> | |
<string>armv7</string> | |
<string>opengles-2</string> | |
</array> | |
<key>UISupportedInterfaceOrientations</key> | |
<array> | |
<string>UIInterfaceOrientationLandscapeLeft</string> | |
<string>UIInterfaceOrientationLandscapeRight</string> | |
</array> | |
<key>CFBundleIconName</key> | |
<string>AppIcon</string> | |
<key>UIRequiresFullScreen</key> | |
<true/> | |
<key>MinimumOSVersion</key> | |
<string>7.1.2</string> | |
</dict> | |
</plist> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment