12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- <?xml version="1.0" encoding="UTF-8"?>
- <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
- <plist version="1.0">
- <dict>
- <key>CFBundleDevelopmentRegion</key>
- <string>en</string>
- <key>CFBundleDisplayName</key>
- <string>Threema Work</string>
- <key>CFBundleExecutable</key>
- <string>$(EXECUTABLE_NAME)</string>
- <key>CFBundleIcons</key>
- <dict/>
- <key>CFBundleIcons~ipad</key>
- <dict/>
- <key>CFBundleIdentifier</key>
- <string>$(PRODUCT_BUNDLE_IDENTIFIER)</string>
- <key>CFBundleInfoDictionaryVersion</key>
- <string>6.0</string>
- <key>CFBundleName</key>
- <string>$(PRODUCT_NAME)</string>
- <key>CFBundlePackageType</key>
- <string>XPC!</string>
- <key>CFBundleShortVersionString</key>
- <string>$(VERSION_NUMBER)</string>
- <key>CFBundleSignature</key>
- <string>????</string>
- <key>CFBundleVersion</key>
- <string>$(BUILD_NUMBER)</string>
- <key>NSExtension</key>
- <dict>
- <key>NSExtensionAttributes</key>
- <dict>
- <key>NSExtensionActivationRule</key>
- <string>SUBQUERY (
- extensionItems,
- $extensionItem,
- SUBQUERY (
- $extensionItem.attachments,
- $attachment,
- ANY $attachment.registeredTypeIdentifiers UTI-CONFORMS-TO "public.item" ||
- ANY $attachment.registeredTypeIdentifiers UTI-CONFORMS-TO "public.data" ||
- ANY $attachment.registeredTypeIdentifiers UTI-CONFORMS-TO "public.content" ||
- ANY $attachment.registeredTypeIdentifiers UTI-CONFORMS-TO "public.archive" ||
- ANY $attachment.registeredTypeIdentifiers UTI-CONFORMS-TO "public.contact" ||
- ANY $attachment.registeredTypeIdentifiers UTI-CONFORMS-TO "public.message"
- ).@count <= 10
- ).@count == 1
- </string>
- </dict>
- <key>NSExtensionMainStoryboard</key>
- <string>ThreemaShareStoryboard</string>
- <key>NSExtensionPointIdentifier</key>
- <string>com.apple.share-services</string>
- </dict>
- <key>ThreemaVersionSuffix</key>
- <string>k</string>
- </dict>
- </plist>
|