InfoTemplate.plist 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. <!--
  2. For this to be a valid plist file replace the following
  3. $REVERSE_CLIENT_ID:
  4. Value of REVERSED_CLIENT_ID key in the GoogleService-Info.plist file.
  5. -->
  6. <?xml version="1.0" encoding="UTF-8"?>
  7. <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
  8. <plist version="1.0">
  9. <dict>
  10. <key>CFBundleDevelopmentRegion</key>
  11. <string>en</string>
  12. <key>CFBundleExecutable</key>
  13. <string>$(EXECUTABLE_NAME)</string>
  14. <key>CFBundleIdentifier</key>
  15. <string>$(PRODUCT_BUNDLE_IDENTIFIER)</string>
  16. <key>CFBundleInfoDictionaryVersion</key>
  17. <string>6.0</string>
  18. <key>CFBundleName</key>
  19. <string>$(PRODUCT_NAME)</string>
  20. <key>CFBundlePackageType</key>
  21. <string>APPL</string>
  22. <key>CFBundleShortVersionString</key>
  23. <string>1.0</string>
  24. <key>CFBundleSignature</key>
  25. <string>????</string>
  26. <key>CFBundleURLTypes</key>
  27. <array>
  28. <dict>
  29. <key>CFBundleTypeRole</key>
  30. <string>Editor</string>
  31. <key>CFBundleURLName</key>
  32. <string>com.google.swiftbear</string>
  33. <key>CFBundleURLSchemes</key>
  34. <array>
  35. <string>com.google.swiftbear</string>
  36. </array>
  37. </dict>
  38. <dict>
  39. <key>CFBundleTypeRole</key>
  40. <string>Editor</string>
  41. <key>CFBundleURLName</key>
  42. <string>$REVERSE_CLIENT_ID</string>
  43. <key>CFBundleURLSchemes</key>
  44. <array>
  45. <string>$REVERSE_CLIENT_ID</string>
  46. </array>
  47. </dict>
  48. </array>
  49. <key>CFBundleVersion</key>
  50. <string>1</string>
  51. <key>LSRequiresIPhoneOS</key>
  52. <true/>
  53. <key>UILaunchStoryboardName</key>
  54. <string>LaunchScreen</string>
  55. <key>UIMainStoryboardFile</key>
  56. <string>Main</string>
  57. <key>UIRequiredDeviceCapabilities</key>
  58. <array>
  59. <string>armv7</string>
  60. </array>
  61. <key>UISupportedInterfaceOrientations</key>
  62. <array>
  63. <string>UIInterfaceOrientationPortrait</string>
  64. <string>UIInterfaceOrientationLandscapeLeft</string>
  65. <string>UIInterfaceOrientationLandscapeRight</string>
  66. </array>
  67. <key>UISupportedInterfaceOrientations~ipad</key>
  68. <array>
  69. <string>UIInterfaceOrientationPortrait</string>
  70. <string>UIInterfaceOrientationPortraitUpsideDown</string>
  71. <string>UIInterfaceOrientationLandscapeLeft</string>
  72. <string>UIInterfaceOrientationLandscapeRight</string>
  73. </array>
  74. <key>LSApplicationQueriesSchemes</key>
  75. <array>
  76. <string>fbauth2</string>
  77. </array>
  78. </dict>
  79. </plist>