Info.plist 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  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>LSApplicationCategoryType</key>
  6. <string>public.app-category.productivity</string>
  7. <key>CFBundleDevelopmentRegion</key>
  8. <string>$(DEVELOPMENT_LANGUAGE)</string>
  9. <key>CFBundleExecutable</key>
  10. <string>$(EXECUTABLE_NAME)</string>
  11. <key>CFBundleIconFile</key>
  12. <string></string>
  13. <key>CFBundleIdentifier</key>
  14. <string>$(PRODUCT_BUNDLE_IDENTIFIER)</string>
  15. <key>CFBundleInfoDictionaryVersion</key>
  16. <string>6.0</string>
  17. <key>CFBundleLocalizations</key>
  18. <array>
  19. <string>en</string>
  20. <string>fr</string>
  21. <string>it</string>
  22. <string>zh</string>
  23. </array>
  24. <key>CFBundleName</key>
  25. <string>$(PRODUCT_NAME)</string>
  26. <key>CFBundlePackageType</key>
  27. <string>APPL</string>
  28. <key>CFBundleShortVersionString</key>
  29. <string>$(FLUTTER_BUILD_NAME)</string>
  30. <key>CFBundleURLTypes</key>
  31. <array>
  32. <dict>
  33. <key>CFBundleURLName</key>
  34. <string></string>
  35. <key>CFBundleURLSchemes</key>
  36. <array>
  37. <string>appflowy-flutter</string>
  38. </array>
  39. </dict>
  40. </array>
  41. <key>CFBundleVersion</key>
  42. <string>$(FLUTTER_BUILD_NUMBER)</string>
  43. <key>LSMinimumSystemVersion</key>
  44. <string>$(MACOSX_DEPLOYMENT_TARGET)</string>
  45. <key>NSAppTransportSecurity</key>
  46. <dict>
  47. <key>NSAllowsArbitraryLoads</key>
  48. <true/>
  49. </dict>
  50. <key>NSHumanReadableCopyright</key>
  51. <string>$(PRODUCT_COPYRIGHT)</string>
  52. <key>NSMainNibFile</key>
  53. <string>MainMenu</string>
  54. <key>NSPrincipalClass</key>
  55. <string>NSApplication</string>
  56. </dict>
  57. </plist>