Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(146)

Side by Side Diff: sky/shell/ios/Info.plist

Issue 1171573002: Basic Sky shell for iOS targets (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Created 5 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(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
8 <!--
9 This executable name must match the name of the app provided to the
10 ios_app GN template
11 -->
12 <key>CFBundleExecutable</key>
13 <string>Sky</string>
14
15 <key>CFBundleIdentifier</key>
16 <string>com.google.sky</string>
abarth-chromium 2015/06/05 22:56:09 Same here. We use org.domokit.sky in Java too.
17
18 <key>CFBundleInfoDictionaryVersion</key>
19 <string>6.0</string>
20 <key>CFBundleName</key>
21 <string>Sky</string>
22 <key>CFBundlePackageType</key>
23 <string>APPL</string>
24 <key>CFBundleShortVersionString</key>
25 <string>1.0</string>
26 <key>CFBundleVersion</key>
27 <string>1</string>
28 <key>LSRequiresIPhoneOS</key>
29 <true/>
30 <key>UIRequiredDeviceCapabilities</key>
31 <array>
32 <string>armv7</string>
33 </array>
34
35 <!--
36 mojo:// URL handlers
37 -->
38 <key>CFBundleURLTypes</key>
39 <array>
40 <dict>
41 <key>CFBundleTypeRole</key>
42 <string>Viewer</string>
43 <key>CFBundleURLName</key>
44 <string>com.google.mojo</string>
abarth-chromium 2015/06/05 22:56:09 org.domokit.mojo
45 <key>CFBundleURLSchemes</key>
46 <array>
47 <string>mojo</string>
48 </array>
49 </dict>
50 </array>
51
52 <!--
53 Sky Load URL
54 -->
55 <key>com.google.sky.load_url</key>
abarth-chromium 2015/06/05 22:56:09 org.domokit.sky.load_url
56 <string>https://domokit.github.io/sky_home</string>
57
58 <!--
59 FIXME(csg): Xcode, as part of its build process, adds the follow ing
60 items to the Info.plist. It is not immediately clear if there is a
61 command line utility that generates these. For now, just add the same
62 manually
63 -->
64 <key>DTPlatformName</key>
65 <string>iphonesimulator</string>
abarth-chromium 2015/06/05 22:56:09 Do these cause trouble when running on a real devi
66 <key>DTSDKName</key>
67 <string>iphonesimulator8.3</string>
68 <key>LSRequiresIPhoneOS</key>
69 <true/>
70 <key>MinimumOSVersion</key>
71 <string>8.3</string>
72 <key>UIDeviceFamily</key>
73 <array>
74 <integer>1</integer>
75 <integer>2</integer>
76 </array>
77 <key>CFBundleSupportedPlatforms</key>
78 <array>
79 <string>iPhoneSimulator</string>
80 </array>
81 </dict>
82 </plist>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698