2
0

Info.plist 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  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>NSAppTransportSecurity</key>
  24. <dict>
  25. <key>NSAllowsArbitraryLoads</key>
  26. <true/>
  27. </dict>
  28. <key>NSExtension</key>
  29. <dict>
  30. <key>NSExtensionAttributes</key>
  31. <dict>
  32. <key>NSExtensionActivationRule</key>
  33. <string>
  34. SUBQUERY (
  35. extensionItems, $extensionItem,
  36. SUBQUERY (
  37. $extensionItem.attachments, $attachment,
  38. ANY $attachment.registeredTypeIdentifiers UTI-CONFORMS-TO "public.image" ||
  39. ANY $attachment.registeredTypeIdentifiers UTI-CONFORMS-TO "public.plain-text" ||
  40. ANY $attachment.registeredTypeIdentifiers UTI-CONFORMS-TO "public.url"
  41. ).@count == 1
  42. ).@count &gt; 0
  43. </string>
  44. </dict>
  45. <key>NSExtensionMainStoryboard</key>
  46. <string>MainInterface</string>
  47. <key>NSExtensionPointIdentifier</key>
  48. <string>com.apple.share-services</string>
  49. </dict>
  50. </dict>
  51. </plist>