-
Notifications
You must be signed in to change notification settings - Fork 131
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
#1293 added a share action extension "Save to ownCloud"
- Loading branch information
Showing
5 changed files
with
322 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
<?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>OCKeychainAccessGroupIdentifier</key> | ||
<string>group.com.owncloud.ios-app</string> | ||
<key>OCHasFileProvider</key> | ||
<true/> | ||
<key>OCAppComponentIdentifier</key> | ||
<string>shareExtension</string> | ||
<key>OCAppIdentifierPrefix</key> | ||
<string>$(AppIdentifierPrefix)</string> | ||
<key>OCAppGroupIdentifier</key> | ||
<string>group.com.owncloud.ios-app</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.data" | ||
) | ||
).@count == $extensionItem.attachments.@count | ||
).@count > 0</string> | ||
</dict> | ||
<key>NSExtensionPrincipalClass</key> | ||
<string>ShareExtensionViewController</string> | ||
<key>NSExtensionPointIdentifier</key> | ||
<string>com.apple.ui-services</string> | ||
</dict> | ||
</dict> | ||
</plist> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
/* | ||
InfoPlist.strings | ||
ownCloud | ||
|
||
Created by Matthias Hühne on 11/20/2023. | ||
Copyright © 2020 ownCloud GmbH. All rights reserved. | ||
*/ | ||
|
||
/* | ||
* Copyright (C) 2020, ownCloud GmbH. | ||
* | ||
* This code is covered by the GNU Public License Version 3. | ||
* | ||
* For distribution utilizing Apple mechanisms please see https://owncloud.org/contribute/iOS-license-exception/ | ||
* You should have received a copy of this license along with this program. If not, see <http://www.gnu.org/licenses/gpl-3.0.en.html>. | ||
* | ||
*/ | ||
|
||
"CFBundleDisplayName" = "Speichern in ownCloud"; | ||
|
||
"The Share Extension is not available on this system." = "Die Erweiterung ist auf diesem System nicht verfügbar."; | ||
"Share Extension unavailable" = "Erweiterung nicht verfügbar"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
/* | ||
InfoPlist.strings | ||
ownCloud | ||
|
||
Created by Matthias Hühne on 11/20/2023. | ||
Copyright © 2020 ownCloud GmbH. All rights reserved. | ||
*/ | ||
|
||
/* | ||
* Copyright (C) 2020, ownCloud GmbH. | ||
* | ||
* This code is covered by the GNU Public License Version 3. | ||
* | ||
* For distribution utilizing Apple mechanisms please see https://owncloud.org/contribute/iOS-license-exception/ | ||
* You should have received a copy of this license along with this program. If not, see <http://www.gnu.org/licenses/gpl-3.0.en.html>. | ||
* | ||
*/ | ||
|
||
"CFBundleDisplayName" = "Save to ownCloud"; | ||
|
||
"The Share Extension is not available on this system." = "The Share Extension is not available on this system."; | ||
"Share Extension unavailable" = "Share Extension unavailable"; |
14 changes: 14 additions & 0 deletions
14
ownCloud Action Extension/ownCloud Action Extension.entitlements
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
<?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>com.apple.security.application-groups</key> | ||
<array> | ||
<string>group.com.owncloud.ios-app</string> | ||
</array> | ||
<key>keychain-access-groups</key> | ||
<array> | ||
<string>$(AppIdentifierPrefix)group.com.owncloud.ios-app</string> | ||
</array> | ||
</dict> | ||
</plist> |
Oops, something went wrong.