OLD | NEW |
| (Empty) |
1 <?xml version="1.0" encoding="UTF-8"?> | |
2 <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/
PropertyList-1.0.dtd"> | |
3 <plist version="1.0"> | |
4 <dict> | |
5 <key>CFBundleDevelopmentRegion</key> | |
6 <string>en</string> | |
7 <key>CFBundleDisplayName</key> | |
8 <string>${DISPLAY_NAME}</string> | |
9 <key>CFBundleExecutable</key> | |
10 <string>${EXECUTABLE_NAME}</string> | |
11 <key>CFBundleIdentifier</key> | |
12 <string>${BUNDLE_IDENTIFIER}</string> | |
13 <key>CFBundleInfoDictionaryVersion</key> | |
14 <string>6.0</string> | |
15 <key>CFBundleName</key> | |
16 <string>${PRODUCT_NAME}</string> | |
17 <key>CFBundlePackageType</key> | |
18 <string>APPL</string> | |
19 <key>CFBundleShortVersionString</key> | |
20 <string>${VERSION_SHORT}</string> | |
21 <key>CFBundleSignature</key> | |
22 <string>????</string> | |
23 <key>CFBundleVersion</key> | |
24 <string>${VERSION_FULL}</string> | |
25 <key>UILaunchStoryboardName</key> | |
26 <string>LaunchScreen</string> | |
27 <key>CFBundleIcons</key> | |
28 <dict> | |
29 <key>CFBundlePrimaryIcon</key> | |
30 <dict> | |
31 <key>CFBundleIconFiles</key> | |
32 <array> | |
33 <string>Icon-120.png</string> | |
34 <string>Icon-152.png</string> | |
35 <string>Icon-167.png</string> | |
36 <string>Icon-180.png</string> | |
37 <string>Icon-29.png</string> | |
38 <string>Icon-40.png</string> | |
39 <string>Icon-58.png</string> | |
40 <string>Icon-76.png</string> | |
41 <string>Icon-80.png</string> | |
42 <string>Icon-87.png</string> | |
43 </array> | |
44 <key>UIPrerenderedIcon</key> | |
45 <true/> | |
46 </dict> | |
47 </dict> | |
48 <key>CFBundleURLTypes</key> | |
49 <array> | |
50 <dict> | |
51 <key>CFBundleURLSchemes</key> | |
52 <array> | |
53 <string>crd</string> | |
54 </array> | |
55 </dict> | |
56 </array> | |
57 <key>LSRequiresIPhoneOS</key> | |
58 <true/> | |
59 <key>MinimumOSVersion</key> | |
60 <string>${MINIMUM_OS_VERSION}</string> | |
61 <key>UIRequiredDeviceCapabilities</key> | |
62 <array> | |
63 <string>armv7</string> | |
64 </array> | |
65 <key>UISupportedInterfaceOrientations</key> | |
66 <array> | |
67 <string>UIInterfaceOrientationPortrait</string> | |
68 <string>UIInterfaceOrientationPortraitUpsideDown</string> | |
69 <string>UIInterfaceOrientationLandscapeLeft</string> | |
70 <string>UIInterfaceOrientationLandscapeRight</string> | |
71 </array> | |
72 <key>UISupportedInterfaceOrientations~ipad</key> | |
73 <array> | |
74 <string>UIInterfaceOrientationPortrait</string> | |
75 <string>UIInterfaceOrientationPortraitUpsideDown</string> | |
76 <string>UIInterfaceOrientationLandscapeLeft</string> | |
77 <string>UIInterfaceOrientationLandscapeRight</string> | |
78 </array> | |
79 </dict> | |
80 </plist> | |
OLD | NEW |