Info.plist.in 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  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>NSPrincipalClass</key>
  6. <string>NSApplication</string>
  7. <key>CFBundlePackageType</key>
  8. <string>APPL</string>
  9. <key>CFBundleName</key>
  10. <string>APK Editor Studio</string>
  11. <key>CFBundleVersion</key>
  12. <string>${VERSION}</string>
  13. <key>CFBundleShortVersionString</key>
  14. <string>${VERSION}</string>
  15. <key>CFBundleExecutable</key>
  16. <string>apk-editor-studio</string>
  17. <key>CFBundleIdentifier</key>
  18. <string>com.qwertycube.apk-editor-studio</string>
  19. <key>CFBundleIconFile</key>
  20. <string>apk-editor-studio.icns</string>
  21. <key>NSHumanReadableCopyright</key>
  22. <string>Copyright (C) Alexander Gorishnyak 2019-2023</string>
  23. <key>CFBundleDocumentTypes</key>
  24. <array>
  25. <dict>
  26. <key>CFBundleTypeName</key>
  27. <string>Android Application Package</string>
  28. <key>CFBundleTypeExtensions</key>
  29. <array>
  30. <string>apk</string>
  31. </array>
  32. <key>CFBundleTypeIconFile</key>
  33. <string>apk-editor-studio.icns</string>
  34. <key>CFBundleTypeRole</key>
  35. <string>Editor</string>
  36. <key>LSTypeIsPackage</key>
  37. <false />
  38. <key>NSPersistentStoreTypeKey</key>
  39. <string>Binary</string>
  40. </dict>
  41. </array>
  42. </dict>
  43. </plist>