aboutsummaryrefslogtreecommitdiffhomepage
path: root/Firestore/Example/App/iOS/Firestore-Info.plist
diff options
context:
space:
mode:
authorGravatar Gil <mcg@google.com>2018-05-14 13:09:24 -0700
committerGravatar GitHub <noreply@github.com>2018-05-14 13:09:24 -0700
commit70ac17a9ead9a396248e2ba98a0c68266b9f15f1 (patch)
tree976e7b946047419d7f7d38e3dfbe74e6cd302680 /Firestore/Example/App/iOS/Firestore-Info.plist
parentdea3fe9aeba64d5e5cf919140688f5607db3dcd5 (diff)
Prep for direct macOS support in Firestore pod (#1269)
* Add Firestore/Example/App group * Move "Example For Firestore" into App * Rename "Example For Firestore" to "iOS" * Update plist file location
Diffstat (limited to 'Firestore/Example/App/iOS/Firestore-Info.plist')
-rw-r--r--Firestore/Example/App/iOS/Firestore-Info.plist49
1 files changed, 49 insertions, 0 deletions
diff --git a/Firestore/Example/App/iOS/Firestore-Info.plist b/Firestore/Example/App/iOS/Firestore-Info.plist
new file mode 100644
index 0000000..7576a0d
--- /dev/null
+++ b/Firestore/Example/App/iOS/Firestore-Info.plist
@@ -0,0 +1,49 @@
+<?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>
+ <key>CFBundleDisplayName</key>
+ <string>${PRODUCT_NAME}</string>
+ <key>CFBundleExecutable</key>
+ <string>${EXECUTABLE_NAME}</string>
+ <key>CFBundleIdentifier</key>
+ <string>$(PRODUCT_BUNDLE_IDENTIFIER)</string>
+ <key>CFBundleInfoDictionaryVersion</key>
+ <string>6.0</string>
+ <key>CFBundleName</key>
+ <string>${PRODUCT_NAME}</string>
+ <key>CFBundlePackageType</key>
+ <string>APPL</string>
+ <key>CFBundleShortVersionString</key>
+ <string>1.0</string>
+ <key>CFBundleSignature</key>
+ <string>????</string>
+ <key>CFBundleVersion</key>
+ <string>1.0</string>
+ <key>LSRequiresIPhoneOS</key>
+ <true/>
+ <key>UILaunchStoryboardName</key>
+ <string>LaunchScreen</string>
+ <key>UIMainStoryboardFile</key>
+ <string>Main</string>
+ <key>UIRequiredDeviceCapabilities</key>
+ <array>
+ <string>armv7</string>
+ </array>
+ <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>
+</dict>
+</plist>