Files
lime/templates/iphone/PROJ/PROJ-Info.plist
underscorediscovery ba35d41715 Updating templates path
2013-11-28 01:23:25 -03:30

100 lines
2.8 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>CFBundleIconFile</key>
<string>Icon.png</string>
<key>CFBundleIcons</key>
<dict>
<key>CFBundlePrimaryIcon</key>
<dict>
<key>CFBundleIconFiles</key>
<array>
::if (HAS_ICON)::
<string>Icon.png</string>
<string>Icon@2x.png</string>
<string>Icon-60.png</string>
<string>Icon-60@2x.png</string>
<string>Icon-72.png</string>
<string>Icon-72@2x.png</string>
<string>Icon-76.png</string>
<string>Icon-76@2x.png</string>
::end::
::if (HAS_LAUNCH_IMAGE)::
<string>Default.png</string>
<string>Default@2x.png</string>
<string>Default-568h@2x.png</string>
<string>Default-Portrait.png</string>
<string>Default-Portrait@2x.png</string>
<string>Default-Landscape.png</string>
<string>Default-Landscape@2x.png</string>
::end::
</array>
<key>UIPrerenderedIcon</key>
<::PRERENDERED_ICON::/>
</dict>
</dict>
<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>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
<string>::APP_BUILD_NUMBER::</string>
<key>CFBundleShortVersionString</key>
<string>::APP_VERSION::</string>
<key>LSRequiresIPhoneOS</key>
<true/>
<key>UIStatusBarHidden</key>
<::WIN_FULLSCREEN::/>
<key>UIViewControllerBasedStatusBarAppearance</key>
<::!WIN_FULLSCREEN::/>
::if (IOS_APP_ORIENTATION != null)::
<key>UISupportedInterfaceOrientations</key>
::IOS_APP_ORIENTATION::::end::
::if (HAS_LAUNCH_IMAGE)::
<key>UILaunchImages~ipad</key>
<array>
<dict>
<key>UILaunchImageMinimumOSVersion</key>
<string>7.0</string>
<key>UILaunchImageName</key>
<string>Default-Landscape</string>
<key>UILaunchImageOrientation</key>
<string>Landscape</string>
<key>UILaunchImageSize</key>
<string>{768, 1024}</string>
</dict>
<dict>
<key>UILaunchImageMinimumOSVersion</key>
<string>7.0</string>
<key>UILaunchImageName</key>
<string>Default-Portrait</string>
<key>UILaunchImageOrientation</key>
<string>Portrait</string>
<key>UILaunchImageSize</key>
<string>{768, 1024}</string>
</dict>
</array>
::end::
<key>UIRequiredDeviceCapabilities</key>
<dict>
::foreach REQUIRED_CAPABILITY::
<key>::name::</key>
::if value::<true/>::else::<false/>::end::
::end::
</dict>
</dict>
</plist>