Info.plist 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  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>ShareExtension</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>IntentsSupported</key>
  28. <array>
  29. <string>INSendMessageIntent</string>
  30. </array>
  31. <key>NSExtensionActivationRule</key>
  32. <string>SUBQUERY (
  33. extensionItems,
  34. $extensionItem,
  35. SUBQUERY (
  36. $extensionItem.attachments,
  37. $attachment,
  38. ANY $attachment.registeredTypeIdentifiers UTI-CONFORMS-TO "public.image" ||
  39. ANY $attachment.registeredTypeIdentifiers UTI-CONFORMS-TO "public.video" ||
  40. ANY $attachment.registeredTypeIdentifiers UTI-CONFORMS-TO "public.url" ||
  41. ANY $attachment.registeredTypeIdentifiers UTI-CONFORMS-TO "public.plain-text" ||
  42. ANY $attachment.registeredTypeIdentifiers UTI-CONFORMS-TO "public.vcard"
  43. ).@count &lt;= 5
  44. ).@count == 1</string>
  45. </dict>
  46. <key>NSExtensionMainStoryboard</key>
  47. <string>Share</string>
  48. <key>NSExtensionPointIdentifier</key>
  49. <string>com.apple.share-services</string>
  50. </dict>
  51. <key>NSUserActivityTypes</key>
  52. <array>
  53. <string>INSendMessageIntent</string>
  54. </array>
  55. </dict>
  56. </plist>