OLD | NEW |
1 <?xml version="1.0" encoding="UTF-8"?> | 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"> | 2 <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/
PropertyList-1.0.dtd"> |
3 <plist version="1.0"> | 3 <plist version="1.0"> |
4 <dict> | 4 <dict> |
5 <key>CFBundleDevelopmentRegion</key> | 5 <key>CFBundleDevelopmentRegion</key> |
6 <string>en</string> | 6 <string>en</string> |
7 <key>CFBundleDisplayName</key> | 7 <key>CFBundleDisplayName</key> |
8 <string>${PRODUCT_NAME}</string> | 8 <string>${PRODUCT_NAME}</string> |
9 <key>CFBundleExecutable</key> | 9 <key>CFBundleExecutable</key> |
10 <string>${EXECUTABLE_NAME}</string> | 10 <string>${EXECUTABLE_NAME}</string> |
11 <key>CFBundleIdentifier</key> | 11 <key>CFBundleIdentifier</key> |
12 <string>org.chromium.${PRODUCT_NAME:rfc1034identifier}</string> | 12 <string>org.chromium.${PRODUCT_NAME:rfc1034identifier}</string> |
13 <key>CFBundleInfoDictionaryVersion</key> | 13 <key>CFBundleInfoDictionaryVersion</key> |
14 <string>6.0</string> | 14 <string>6.0</string> |
15 <key>CFBundleName</key> | 15 <key>CFBundleName</key> |
16 <string>${PRODUCT_NAME}</string> | 16 <string>${PRODUCT_NAME}</string> |
17 <key>CFBundlePackageType</key> | 17 <key>CFBundlePackageType</key> |
18 <string>APPL</string> | 18 <string>APPL</string> |
19 <key>CFBundleShortVersionString</key> | 19 <key>CFBundleShortVersionString</key> |
20 <string>1.0</string> | 20 <string>1.0</string> |
21 <key>CFBundleSignature</key> | 21 <key>CFBundleSignature</key> |
22 <string>????</string> | 22 <string>????</string> |
23 <key>CFBundleVersion</key> | 23 <key>CFBundleVersion</key> |
24 <string>1.0</string> | 24 <string>1.0</string> |
25 <key>LSRequiresIPhoneOS</key> | 25 <key>LSRequiresIPhoneOS</key> |
26 <true/> | 26 <true/> |
| 27 <key>NSAppTransportSecurity</key> |
| 28 <dict> |
| 29 <key>NSAllowsArbitraryLoads</key> |
| 30 <true/> |
| 31 </dict> |
27 <key>UIRequiredDeviceCapabilities</key> | 32 <key>UIRequiredDeviceCapabilities</key> |
28 <array> | 33 <array> |
29 <string>armv7</string> | 34 <string>armv7</string> |
30 </array> | 35 </array> |
31 <key>UILaunchImages</key> | 36 <key>UILaunchImages</key> |
32 <array> | 37 <array> |
33 <dict> | 38 <dict> |
34 <key>UILaunchImageMinimumOSVersion</key> | 39 <key>UILaunchImageMinimumOSVersion</key> |
35 <string>7.0</string> | 40 <string>7.0</string> |
36 <key>UILaunchImageName</key> | 41 <key>UILaunchImageName</key> |
(...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
112 </array> | 117 </array> |
113 <key>UISupportedInterfaceOrientations~ipad</key> | 118 <key>UISupportedInterfaceOrientations~ipad</key> |
114 <array> | 119 <array> |
115 <string>UIInterfaceOrientationPortrait</string> | 120 <string>UIInterfaceOrientationPortrait</string> |
116 <string>UIInterfaceOrientationPortraitUpsideDown</string> | 121 <string>UIInterfaceOrientationPortraitUpsideDown</string> |
117 <string>UIInterfaceOrientationLandscapeLeft</string> | 122 <string>UIInterfaceOrientationLandscapeLeft</string> |
118 <string>UIInterfaceOrientationLandscapeRight</string> | 123 <string>UIInterfaceOrientationLandscapeRight</string> |
119 </array> | 124 </array> |
120 </dict> | 125 </dict> |
121 </plist> | 126 </plist> |
OLD | NEW |