aboutsummaryrefslogtreecommitdiffhomepage
path: root/Example/Auth/Sample/ApplicationTemplate.plist
diff options
context:
space:
mode:
authorGravatar Paul Beusterien <paulbeusterien@google.com>2017-09-19 11:18:04 -0700
committerGravatar GitHub <noreply@github.com>2017-09-19 11:18:04 -0700
commit9447e72cab40c9ea59e49a726d2890bcf356d38a (patch)
treedc25e027769cc1fbe6bd6e0ae0d877858e0780e7 /Example/Auth/Sample/ApplicationTemplate.plist
parenta34d091971d05ef8e2625074157eb9ff6dda3cbd (diff)
Consolidate AuthSamples into main Firebase Xcode project (#288)
Diffstat (limited to 'Example/Auth/Sample/ApplicationTemplate.plist')
-rw-r--r--Example/Auth/Sample/ApplicationTemplate.plist88
1 files changed, 88 insertions, 0 deletions
diff --git a/Example/Auth/Sample/ApplicationTemplate.plist b/Example/Auth/Sample/ApplicationTemplate.plist
new file mode 100644
index 0000000..c7eaf55
--- /dev/null
+++ b/Example/Auth/Sample/ApplicationTemplate.plist
@@ -0,0 +1,88 @@
+<?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>CFBundleName</key>
+ <string>${PRODUCT_NAME}</string>
+ <key>CFBundleIdentifier</key>
+ <string>${PRODUCT_BUNDLE_IDENTIFIER}</string>
+ <key>CFBundleInfoDictionaryVersion</key>
+ <string>6.0</string>
+ <key>UIRequiredDeviceCapabilities</key>
+ <array>
+ <string>armv7</string>
+ </array>
+ <key>CFBundleVersion</key>
+ <string>1.0</string>
+ <key>UIBackgroundModes</key>
+ <array>
+ <string>remote-notification</string>
+ </array>
+ <key>CFBundleExecutable</key>
+ <string>${EXECUTABLE_NAME}</string>
+ <key>LSRequiresIPhoneOS</key>
+ <true/>
+ <key>UILaunchStoryboardName</key>
+ <string>LaunchScreen</string>
+ <key>UISupportedInterfaceOrientations</key>
+ <array>
+ <string>UIInterfaceOrientationPortrait</string>
+ <string>UIInterfaceOrientationLandscapeLeft</string>
+ <string>UIInterfaceOrientationLandscapeRight</string>
+ </array>
+ <key>CFBundleDisplayName</key>
+ <string>FirebaseAuth Sample</string>
+ <key>LSApplicationQueriesSchemes</key>
+ <array>
+ <string>fbauth2</string>
+ </array>
+ <key>CFBundleURLTypes</key>
+ <array>
+ <dict>
+ <key>CFBundleURLName</key>
+ <string>$REVERSE_CLIENT_ID</string>
+ <key>CFBundleURLSchemes</key>
+ <array>
+ <string>$REVERSE_CLIENT_ID</string>
+ </array>
+ <key>CFBundleTypeRole</key>
+ <string>Editor</string>
+ </dict>
+ <dict>
+ <key>CFBundleURLName</key>
+ <string>$REVERSE_CLIENT_MULTI_ID</string>
+ <key>CFBundleURLSchemes</key>
+ <array>
+ <string>$REVERSE_CLIENT_MULTI_ID</string>
+ </array>
+ <key>CFBundleTypeRole</key>
+ <string>Editor</string>
+ </dict>
+ <dict>
+ <key>CFBundleURLName</key>
+ <string>$BUNDLE_ID</string>
+ <key>CFBundleURLSchemes</key>
+ <array>
+ <string>$BUNDLE_ID</string>
+ </array>
+ <key>CFBundleTypeRole</key>
+ <string>Editor</string>
+ </dict>
+ </array>
+ <key>CFBundlePackageType</key>
+ <string>APPL</string>
+ <key>CFBundleSignature</key>
+ <string>????</string>
+ <key>CFBundleDevelopmentRegion</key>
+ <string>en</string>
+ <key>UISupportedInterfaceOrientations~ipad</key>
+ <array>
+ <string>UIInterfaceOrientationPortrait</string>
+ <string>UIInterfaceOrientationPortraitUpsideDown</string>
+ <string>UIInterfaceOrientationLandscapeLeft</string>
+ <string>UIInterfaceOrientationLandscapeRight</string>
+ </array>
+ <key>CFBundleShortVersionString</key>
+ <string>1.0</string>
+</dict>
+</plist>