mirror of
https://github.com/logseq/logseq.git
synced 2026-04-27 23:54:55 +00:00
* feat(mobile): share intent * feat(ios): share content * feat(share): fix kUTType* deprecation * feat(share): fix result of call to 'openURL' is unused * fix screenshot copy rewrite issue * fix AndroidManifest.xml * fix(iOS): app not showing in share list * address comment
34 lines
1.0 KiB
Plaintext
34 lines
1.0 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>NSExtension</key>
|
|
<dict>
|
|
<key>NSExtensionAttributes</key>
|
|
<dict>
|
|
<key>NSExtensionActivationRule</key>
|
|
<dict>
|
|
<key>NSExtensionActivationSupportsFileWithMaxCount</key>
|
|
<integer>5</integer>
|
|
<key>NSExtensionActivationSupportsImageWithMaxCount</key>
|
|
<integer>5</integer>
|
|
<key>NSExtensionActivationSupportsMovieWithMaxCount</key>
|
|
<integer>5</integer>
|
|
<key>NSExtensionActivationSupportsText</key>
|
|
<true/>
|
|
<key>NSExtensionActivationSupportsWebPageWithMaxCount</key>
|
|
<integer>1</integer>
|
|
<key>NSExtensionActivationSupportsWebURLWithMaxCount</key>
|
|
<integer>1</integer>
|
|
<key>NSExtensionActivationUsesStrictMatching</key>
|
|
<false/>
|
|
</dict>
|
|
</dict>
|
|
<key>NSExtensionMainStoryboard</key>
|
|
<string>MainInterface</string>
|
|
<key>NSExtensionPointIdentifier</key>
|
|
<string>com.apple.share-services</string>
|
|
</dict>
|
|
</dict>
|
|
</plist>
|