ApplicationTemplate.plist 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  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>$REVERSE_CLIENT_ID</string>
  44. <key>CFBundleURLSchemes</key>
  45. <array>
  46. <string>$REVERSE_CLIENT_ID</string>
  47. </array>
  48. <key>CFBundleTypeRole</key>
  49. <string>Editor</string>
  50. </dict>
  51. <dict>
  52. <key>CFBundleURLName</key>
  53. <string>$REVERSE_CLIENT_MULTI_ID</string>
  54. <key>CFBundleURLSchemes</key>
  55. <array>
  56. <string>$REVERSE_CLIENT_MULTI_ID</string>
  57. </array>
  58. <key>CFBundleTypeRole</key>
  59. <string>Editor</string>
  60. </dict>
  61. </array>
  62. <key>CFBundlePackageType</key>
  63. <string>APPL</string>
  64. <key>CFBundleSignature</key>
  65. <string>????</string>
  66. <key>CFBundleDevelopmentRegion</key>
  67. <string>en</string>
  68. <key>UISupportedInterfaceOrientations~ipad</key>
  69. <array>
  70. <string>UIInterfaceOrientationPortrait</string>
  71. <string>UIInterfaceOrientationPortraitUpsideDown</string>
  72. <string>UIInterfaceOrientationLandscapeLeft</string>
  73. <string>UIInterfaceOrientationLandscapeRight</string>
  74. </array>
  75. <key>CFBundleShortVersionString</key>
  76. <string>1.0</string>
  77. </dict>
  78. </plist>