ApplicationTemplate.plist 2.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  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. $REVERSE_CLIENT_MULTI_ID:
  6. Value of REVERSED_CLIENT_ID key in the GoogleService-Info_multi.plist file.
  7. This step is optional. If you don't want to use advanced testing just remove
  8. the entire dictionary.
  9. -->
  10. <?xml version="1.0" encoding="UTF-8"?>
  11. <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
  12. <plist version="1.0">
  13. <dict>
  14. <key>CFBundleDevelopmentRegion</key>
  15. <string>en</string>
  16. <key>CFBundleDisplayName</key>
  17. <string>Firebear SDK Sample</string>
  18. <key>CFBundleExecutable</key>
  19. <string>${EXECUTABLE_NAME}</string>
  20. <key>CFBundleIdentifier</key>
  21. <string>${PRODUCT_BUNDLE_IDENTIFIER}</string>
  22. <key>CFBundleInfoDictionaryVersion</key>
  23. <string>6.0</string>
  24. <key>CFBundleName</key>
  25. <string>${PRODUCT_NAME}</string>
  26. <key>CFBundlePackageType</key>
  27. <string>APPL</string>
  28. <key>CFBundleShortVersionString</key>
  29. <string>1.0</string>
  30. <key>CFBundleSignature</key>
  31. <string>????</string>
  32. <key>CFBundleURLTypes</key>
  33. <array>
  34. <dict>
  35. <key>CFBundleTypeRole</key>
  36. <string>Editor</string>
  37. <key>CFBundleURLName</key>
  38. <string>$REVERSE_CLIENT_ID</string>
  39. <key>CFBundleURLSchemes</key>
  40. <array>
  41. <string>$REVERSE_CLIENT_ID</string>
  42. </array>
  43. </dict>
  44. <dict>
  45. <key>CFBundleTypeRole</key>
  46. <string>Editor</string>
  47. <key>CFBundleURLName</key>
  48. <string>$REVERSE_CLIENT_MULTI_ID</string>
  49. <key>CFBundleURLSchemes</key>
  50. <array>
  51. <string>$REVERSE_CLIENT_MULTI_ID</string>
  52. </array>
  53. </dict>
  54. </array>
  55. <key>CFBundleVersion</key>
  56. <string>1.0</string>
  57. <key>LSRequiresIPhoneOS</key>
  58. <true/>
  59. <key>UIBackgroundModes</key>
  60. <array>
  61. <string>remote-notification</string>
  62. </array>
  63. <key>UILaunchStoryboardName</key>
  64. <string>LaunchScreen</string>
  65. <key>UIRequiredDeviceCapabilities</key>
  66. <array>
  67. <string>armv7</string>
  68. </array>
  69. <key>UISupportedInterfaceOrientations</key>
  70. <array>
  71. <string>UIInterfaceOrientationPortrait</string>
  72. <string>UIInterfaceOrientationLandscapeLeft</string>
  73. <string>UIInterfaceOrientationLandscapeRight</string>
  74. </array>
  75. <key>UISupportedInterfaceOrientations~ipad</key>
  76. <array>
  77. <string>UIInterfaceOrientationPortrait</string>
  78. <string>UIInterfaceOrientationPortraitUpsideDown</string>
  79. <string>UIInterfaceOrientationLandscapeLeft</string>
  80. <string>UIInterfaceOrientationLandscapeRight</string>
  81. </array>
  82. <key>LSApplicationQueriesSchemes</key>
  83. <array>
  84. <string>fbauth2</string>
  85. </array>
  86. </dict>
  87. </plist>