mirror of
https://github.com/Dimillian/IceCubesApp.git
synced 2024-11-10 19:20:59 +00:00
8cac9df8c6
* Early version of an action that would open a deeplink in the app * Extend routeur support + catch deeplinks * Cleaning extension code, using what local packages has to offer * Removed useless stuff from the extension * Added action icon ; Thanks Dall-E for the icon * Added the action name within a localizable file * Fix routeur --------- Co-authored-by: Thomas Ricouard <ricouard77@gmail.com>
33 lines
1.1 KiB
Text
33 lines
1.1 KiB
Text
<?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>NSExtension</key>
|
|
<dict>
|
|
<key>NSExtensionAttributes</key>
|
|
<dict>
|
|
<key>NSExtensionActivationRule</key>
|
|
<dict>
|
|
<key>NSExtensionActivationSupportsFileWithMaxCount</key>
|
|
<integer>0</integer>
|
|
<key>NSExtensionActivationSupportsImageWithMaxCount</key>
|
|
<integer>0</integer>
|
|
<key>NSExtensionActivationSupportsMovieWithMaxCount</key>
|
|
<integer>0</integer>
|
|
<key>NSExtensionActivationSupportsText</key>
|
|
<false/>
|
|
<key>NSExtensionActivationSupportsWebURLWithMaxCount</key>
|
|
<integer>1</integer>
|
|
</dict>
|
|
<key>NSExtensionJavaScriptPreprocessingFile</key>
|
|
<string>Action</string>
|
|
<key>NSExtensionServiceFinderPreviewIconName</key>
|
|
<string>NSActionTemplate</string>
|
|
</dict>
|
|
<key>NSExtensionPointIdentifier</key>
|
|
<string>com.apple.services</string>
|
|
<key>NSExtensionPrincipalClass</key>
|
|
<string>$(PRODUCT_MODULE_NAME).ActionRequestHandler</string>
|
|
</dict>
|
|
</dict>
|
|
</plist>
|