Info.plist 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  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>$(DEVELOPMENT_LANGUAGE)</string>
  7. <key>CFBundleExecutable</key>
  8. <string>$(EXECUTABLE_NAME)</string>
  9. <key>CFBundleIconFile</key>
  10. <string>AppIcon.icns</string>
  11. <key>CFBundleIdentifier</key>
  12. <string>$(PRODUCT_BUNDLE_IDENTIFIER)</string>
  13. <key>CFBundleInfoDictionaryVersion</key>
  14. <string>6.0</string>
  15. <key>CFBundleName</key>
  16. <string>$(PRODUCT_NAME)</string>
  17. <key>CFBundlePackageType</key>
  18. <string>APPL</string>
  19. <key>CFBundleShortVersionString</key>
  20. <string>$(FLUTTER_BUILD_NAME)</string>
  21. <key>CFBundleURLTypes</key>
  22. <array>
  23. <dict>
  24. <key>CFBundleTypeRole</key>
  25. <string>Editor</string>
  26. <key>CFBundleURLIconFile</key>
  27. <string></string>
  28. <key>CFBundleURLName</key>
  29. <string>com.carriez.rustdesk</string>
  30. <key>CFBundleURLSchemes</key>
  31. <array>
  32. <string>rustdesk</string>
  33. </array>
  34. </dict>
  35. </array>
  36. <key>CFBundleVersion</key>
  37. <string>$(FLUTTER_BUILD_NUMBER)</string>
  38. <key>LSMinimumSystemVersion</key>
  39. <string>$(MACOSX_DEPLOYMENT_TARGET)</string>
  40. <key>NSHumanReadableCopyright</key>
  41. <string>$(PRODUCT_COPYRIGHT)</string>
  42. <key>NSMainNibFile</key>
  43. <string>MainMenu</string>
  44. <key>NSMicrophoneUsageDescription</key>
  45. <string>Record the sound from microphone for the purpose of the remote desktop.</string>
  46. <key>NSPrincipalClass</key>
  47. <string>NSApplication</string>
  48. <key>LSUIElement</key>
  49. <string>1</string>
  50. </dict>
  51. </plist>