Info.plist 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  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>CFBundleDisplayName</key>
  8. <string>DcShare</string>
  9. <key>CFBundleExecutable</key>
  10. <string>$(EXECUTABLE_NAME)</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>$(PRODUCT_BUNDLE_PACKAGE_TYPE)</string>
  19. <key>CFBundleShortVersionString</key>
  20. <string>$(MARKETING_VERSION)</string>
  21. <key>CFBundleVersion</key>
  22. <string>$(CURRENT_PROJECT_VERSION)</string>
  23. <key>NSExtension</key>
  24. <dict>
  25. <key>NSExtensionAttributes</key>
  26. <dict>
  27. <key>NSExtensionActivationRule</key>
  28. <string>SUBQUERY (
  29. extensionItems,
  30. $extensionItem,
  31. SUBQUERY (
  32. $extensionItem.attachments,
  33. $attachment,
  34. ANY $attachment.registeredTypeIdentifiers UTI-CONFORMS-TO "public.image" ||
  35. ANY $attachment.registeredTypeIdentifiers UTI-CONFORMS-TO "public.audio" ||
  36. ANY $attachment.registeredTypeIdentifiers UTI-CONFORMS-TO "public.movie" ||
  37. ANY $attachment.registeredTypeIdentifiers UTI-CONFORMS-TO "public.plain-text" ||
  38. ANY $attachment.registeredTypeIdentifiers UTI-CONFORMS-TO "public.url"
  39. ).@count == $extensionItem.attachments.@count
  40. ).@count &gt;= 1</string>
  41. </dict>
  42. <key>NSExtensionMainStoryboard</key>
  43. <string>MainInterface</string>
  44. <key>NSExtensionPointIdentifier</key>
  45. <string>com.apple.share-services</string>
  46. </dict>
  47. </dict>
  48. </plist>