ApplicationTemplate.plist 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
  3. <plist version="1.0">
  4. <dict>
  5. <key>CFBundleName</key>
  6. <string>${PRODUCT_NAME}</string>
  7. <key>CFBundleIdentifier</key>
  8. <string>${PRODUCT_BUNDLE_IDENTIFIER}</string>
  9. <key>CFBundleInfoDictionaryVersion</key>
  10. <string>6.0</string>
  11. <key>UIRequiredDeviceCapabilities</key>
  12. <array>
  13. <string>armv7</string>
  14. </array>
  15. <key>CFBundleVersion</key>
  16. <string>1.0</string>
  17. <key>UIBackgroundModes</key>
  18. <array>
  19. <string>remote-notification</string>
  20. </array>
  21. <key>CFBundleExecutable</key>
  22. <string>${EXECUTABLE_NAME}</string>
  23. <key>LSRequiresIPhoneOS</key>
  24. <true/>
  25. <key>UILaunchStoryboardName</key>
  26. <string>LaunchScreen</string>
  27. <key>UISupportedInterfaceOrientations</key>
  28. <array>
  29. <string>UIInterfaceOrientationPortrait</string>
  30. <string>UIInterfaceOrientationLandscapeLeft</string>
  31. <string>UIInterfaceOrientationLandscapeRight</string>
  32. </array>
  33. <key>CFBundleDisplayName</key>
  34. <string>FirebaseAuth Sample</string>
  35. <key>LSApplicationQueriesSchemes</key>
  36. <array>
  37. <string>fbauth2</string>
  38. </array>
  39. <key>CFBundleURLTypes</key>
  40. <array>
  41. <dict>
  42. <key>CFBundleURLName</key>
  43. <string>$REVERSED_CLIENT_ID</string>
  44. <key>CFBundleURLSchemes</key>
  45. <array>
  46. <string>$REVERSED_CLIENT_ID</string>
  47. </array>
  48. <key>CFBundleTypeRole</key>
  49. <string>Editor</string>
  50. </dict>
  51. <dict>
  52. <key>CFBundleURLName</key>
  53. <string>$REVERSED_CLIENT_MULTI_ID</string>
  54. <key>CFBundleURLSchemes</key>
  55. <array>
  56. <string>$REVERSED_CLIENT_MULTI_ID</string>
  57. </array>
  58. <key>CFBundleTypeRole</key>
  59. <string>Editor</string>
  60. </dict>
  61. <dict>
  62. <key>CFBundleURLName</key>
  63. <string>$BUNDLE_ID</string>
  64. <key>CFBundleURLSchemes</key>
  65. <array>
  66. <string>$BUNDLE_ID</string>
  67. </array>
  68. <key>CFBundleTypeRole</key>
  69. <string>Editor</string>
  70. </dict>
  71. </array>
  72. <key>CFBundlePackageType</key>
  73. <string>APPL</string>
  74. <key>CFBundleSignature</key>
  75. <string>????</string>
  76. <key>CFBundleDevelopmentRegion</key>
  77. <string>en</string>
  78. <key>UISupportedInterfaceOrientations~ipad</key>
  79. <array>
  80. <string>UIInterfaceOrientationPortrait</string>
  81. <string>UIInterfaceOrientationPortraitUpsideDown</string>
  82. <string>UIInterfaceOrientationLandscapeLeft</string>
  83. <string>UIInterfaceOrientationLandscapeRight</string>
  84. </array>
  85. <key>CFBundleShortVersionString</key>
  86. <string>1.0</string>
  87. </dict>
  88. </plist>