Polycode_Player-Info.plist 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  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>CFBundleDevelopmentRegion</key>
  6. <string>English</string>
  7. <key>CFBundleDocumentTypes</key>
  8. <array>
  9. <dict>
  10. <key>NSDocumentClass</key>
  11. <string>MyDocument</string>
  12. <key>CFBundleTypeRole</key>
  13. <string>Viewer</string>
  14. <key>CFBundleTypeName</key>
  15. <string>Polycode Launcher File</string>
  16. <key>CFBundleTypeExtensions</key>
  17. <array>
  18. <string>polyrun</string>
  19. </array>
  20. </dict>
  21. <dict>
  22. <key>CFBundleTypeExtensions</key>
  23. <array>
  24. <string>polyapp</string>
  25. </array>
  26. <key>CFBundleTypeIconFile</key>
  27. <string>app_file_icon</string>
  28. <key>CFBundleTypeName</key>
  29. <string>Polycode Application Bundle</string>
  30. <key>CFBundleTypeOSTypes</key>
  31. <array>
  32. <string>????</string>
  33. </array>
  34. <key>CFBundleTypeRole</key>
  35. <string>Viewer</string>
  36. <key>NSDocumentClass</key>
  37. <string>MyDocument</string>
  38. </dict>
  39. </array>
  40. <key>CFBundleExecutable</key>
  41. <string>${EXECUTABLE_NAME}</string>
  42. <key>CFBundleIconFile</key>
  43. <string>player_icon</string>
  44. <key>CFBundleIdentifier</key>
  45. <string>com.yourcompany.${PRODUCT_NAME:rfc1034identifier}</string>
  46. <key>CFBundleInfoDictionaryVersion</key>
  47. <string>6.0</string>
  48. <key>CFBundleName</key>
  49. <string>${PRODUCT_NAME}</string>
  50. <key>CFBundlePackageType</key>
  51. <string>APPL</string>
  52. <key>CFBundleShortVersionString</key>
  53. <string>1.0</string>
  54. <key>CFBundleSignature</key>
  55. <string>????</string>
  56. <key>CFBundleVersion</key>
  57. <string>1</string>
  58. <key>LSMinimumSystemVersion</key>
  59. <string>${MACOSX_DEPLOYMENT_TARGET}</string>
  60. <key>NSMainNibFile</key>
  61. <string>MainMenu</string>
  62. <key>NSPrincipalClass</key>
  63. <string>NSApplication</string>
  64. </dict>
  65. </plist>