Some checks failed
L10n / l10n (push) Has been cancelled
Co-authored-by: Cursor <cursoragent@cursor.com>
51 lines
2.3 KiB
Plaintext
51 lines
2.3 KiB
Plaintext
<?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>CFBundleDisplayName</key>
|
|
<string>Ask iiEasy</string>
|
|
<key>AppGroupId</key>
|
|
<string>group.app.cogwheel.conduit</string>
|
|
|
|
<key>CFBundleVersion</key>
|
|
<string>$(FLUTTER_BUILD_NUMBER)</string>
|
|
<key>NSExtension</key>
|
|
<dict>
|
|
<key>NSExtensionAttributes</key>
|
|
<dict>
|
|
<!-- Add supported message intent if you support sharing to a specific conversation - start -->
|
|
<key>IntentsSupported</key>
|
|
<array>
|
|
<string>INSendMessageIntent</string>
|
|
</array>
|
|
<!-- Add supported message intent if you support sharing to a specific conversation (registered via the recordSentMessage api call) - end -->
|
|
<key>NSExtensionActivationRule</key>
|
|
<!-- Comment or delete the TRUEPREDICATE NSExtensionActivationRule that only works in development mode -->
|
|
<!-- <string>TRUEPREDICATE</string> -->
|
|
<!-- Add a new NSExtensionActivationRule. The rule below will allow sharing one or more file of any type, url, or text content, You can modify these rules to your liking for which types of share content, as well as how many your app can handle -->
|
|
<dict>
|
|
<key>NSExtensionActivationSupportsImageWithMaxCount</key>
|
|
<integer>10</integer>
|
|
<key>NSExtensionActivationSupportsMovieWithMaxCount</key>
|
|
<integer>10</integer>
|
|
<key>NSExtensionActivationSupportsWebURLWithMaxCount</key>
|
|
<integer>10</integer>
|
|
<key>NSExtensionActivationSupportsText</key>
|
|
<true/>
|
|
<key>NSExtensionActivationSupportsFileWithMaxCount</key>
|
|
<integer>20</integer>
|
|
</dict>
|
|
<key>PHSupportedMediaTypes</key>
|
|
<array>
|
|
<string>Video</string>
|
|
<string>Image</string>
|
|
</array>
|
|
</dict>
|
|
<key>NSExtensionPrincipalClass</key>
|
|
<string>$(PRODUCT_MODULE_NAME).ShareViewController</string>
|
|
<key>NSExtensionPointIdentifier</key>
|
|
<string>com.apple.share-services</string>
|
|
</dict>
|
|
</dict>
|
|
</plist>
|