Info.plist 1.51 KB
Newer Older
1 2 3 4 5
<?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>
6
	<string>$(DEVELOPMENT_LANGUAGE)</string>
7
	<key>CFBundleExecutable</key>
8
	<string>$(EXECUTABLE_NAME)</string>
9
	<key>CFBundleIdentifier</key>
10
	<string>$(PRODUCT_BUNDLE_IDENTIFIER)</string>
11 12 13
	<key>CFBundleInfoDictionaryVersion</key>
	<string>6.0</string>
	<key>CFBundleName</key>
14
	<string>hello_world</string>
15 16 17 18 19 20 21 22 23 24 25 26
	<key>CFBundlePackageType</key>
	<string>APPL</string>
	<key>CFBundleShortVersionString</key>
	<string>1.0</string>
	<key>CFBundleSignature</key>
	<string>????</string>
	<key>CFBundleVersion</key>
	<string>1</string>
	<key>LSRequiresIPhoneOS</key>
	<true/>
	<key>UILaunchStoryboardName</key>
	<string>LaunchScreen</string>
27 28
	<key>UIMainStoryboardFile</key>
	<string>Main</string>
29 30 31 32 33 34 35 36 37 38 39 40 41
	<key>UISupportedInterfaceOrientations</key>
	<array>
		<string>UIInterfaceOrientationPortrait</string>
		<string>UIInterfaceOrientationLandscapeLeft</string>
		<string>UIInterfaceOrientationLandscapeRight</string>
	</array>
	<key>UISupportedInterfaceOrientations~ipad</key>
	<array>
		<string>UIInterfaceOrientationPortrait</string>
		<string>UIInterfaceOrientationPortraitUpsideDown</string>
		<string>UIInterfaceOrientationLandscapeLeft</string>
		<string>UIInterfaceOrientationLandscapeRight</string>
	</array>
42 43
	<key>CADisableMinimumFrameDurationOnPhone</key>
	<true/>
44 45
	<key>UIApplicationSupportsIndirectInputEvents</key>
	<true/>
46 47
</dict>
</plist>