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

Unified 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: Service provider platform task runner refactor to be platform agnostic 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « sky/shell/ios/Entitlements.xcent ('k') | sky/shell/ios/main_ios.mm » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sky/shell/ios/Info.plist
diff --git a/sky/shell/ios/Info.plist b/sky/shell/ios/Info.plist
new file mode 100644
index 0000000000000000000000000000000000000000..cd5b90f17f5968a16e64ee5ecb9e818e1943d8dd
--- /dev/null
+++ b/sky/shell/ios/Info.plist
@@ -0,0 +1,82 @@
+<?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>
+
+ <!--
+ This executable name must match the name of the app provided to the
+ ios_app GN template
+ -->
+ <key>CFBundleExecutable</key>
+ <string>Sky</string>
+
+ <key>CFBundleIdentifier</key>
+ <string>com.google.sky</string>
+
+ <key>CFBundleInfoDictionaryVersion</key>
+ <string>6.0</string>
+ <key>CFBundleName</key>
+ <string>Sky</string>
+ <key>CFBundlePackageType</key>
+ <string>APPL</string>
+ <key>CFBundleShortVersionString</key>
+ <string>1.0</string>
+ <key>CFBundleVersion</key>
+ <string>1</string>
+ <key>LSRequiresIPhoneOS</key>
+ <true/>
+ <key>UIRequiredDeviceCapabilities</key>
+ <array>
+ <string>armv7</string>
+ </array>
+
+ <!--
+ mojo:// URL handlers
+ -->
+ <key>CFBundleURLTypes</key>
+ <array>
+ <dict>
+ <key>CFBundleTypeRole</key>
+ <string>Viewer</string>
+ <key>CFBundleURLName</key>
+ <string>com.google.mojo</string>
+ <key>CFBundleURLSchemes</key>
+ <array>
+ <string>mojo</string>
+ </array>
+ </dict>
+ </array>
+
+ <!--
+ Sky Load URL
+ -->
+ <key>com.google.sky.load_url</key>
+ <string>https://domokit.github.io/sky_home</string>
+
+ <!--
+ FIXME(csg): Xcode, as part of its build process, adds the following
+ items to the Info.plist. It is not immediately clear if there is a
+ command line utility that generates these. For now, just add the same
+ manually
+ -->
+ <key>DTPlatformName</key>
+ <string>iphonesimulator</string>
+ <key>DTSDKName</key>
+ <string>iphonesimulator8.3</string>
+ <key>LSRequiresIPhoneOS</key>
+ <true/>
+ <key>MinimumOSVersion</key>
+ <string>8.3</string>
+ <key>UIDeviceFamily</key>
+ <array>
+ <integer>1</integer>
+ <integer>2</integer>
+ </array>
+ <key>CFBundleSupportedPlatforms</key>
+ <array>
+ <string>iPhoneSimulator</string>
+ </array>
+</dict>
+</plist>
« no previous file with comments | « sky/shell/ios/Entitlements.xcent ('k') | sky/shell/ios/main_ios.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698