Files
lime/templates/tvos/PROJ/PROJ-Info.plist
2017-08-28 11:49:17 -07:00

48 lines
1.5 KiB
Plaintext

<?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_TITLE::</string>
<key>CFBundleExecutable</key>
<string>${EXECUTABLE_NAME}</string>
<key>CFBundleIdentifier</key>
<string>::APP_PACKAGE::</string>
<key>CFBundleInfoDictionaryVersion</key>
<string>6.0</string>
<key>CFBundleName</key>
<string>${PRODUCT_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_NUMBER::</string>
<key>LSRequiresIPhoneOS</key>
<true/>
<key>UIRequiredDeviceCapabilities</key>
<dict>
::foreach REQUIRED_CAPABILITY::
<key>::name::</key>
::if value::<true/>::else::<false/>::end::
::end::
</dict>
<key>UIStatusBarHidden</key>
<::WIN_FULLSCREEN::/>
<key>UIViewControllerBasedStatusBarAppearance</key>
<::!WIN_FULLSCREEN::/>
::if (IOS_APP_ORIENTATION != null)::
<key>UISupportedInterfaceOrientations</key>
::IOS_APP_ORIENTATION::::end::
<key>NSAppTransportSecurity</key>
<dict>
<key>NSAllowsArbitraryLoads</key><true/>
</dict>
::if (IOS_NON_EXEMPT_ENCRYPTION != null)::<key>ITSAppUsesNonExemptEncryption</key><::IOS_NON_EXEMPT_ENCRYPTION:: />::end::
</dict>
</plist>