-
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.
[feature/share-action-extension] Share Action Extension "Save to ownC…
…loud" (#1301) * #1293 added a share action extension "Save to ownCloud" * Calens changelog updated * adopted fastlane code signing for new target "ownCloud Action Extension" * adopted the resign script and resign inspector for new action extension * - added action extension - fixed wrong emm identifier * fixed adding default bundle display name * replace CFBundleDisplayName in action extension with branded app name for english and german localisations * Update fastlane/Fastfile Co-authored-by: Felix Schwarz <[email protected]> --------- Co-authored-by: hosy <[email protected]> Co-authored-by: Felix Schwarz <[email protected]>
- Loading branch information
1 parent
24768f6
commit 18b452d
Showing
10 changed files
with
397 additions
and
9 deletions.
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
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
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
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
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
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,40 @@ | ||
<?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>CFBundleDisplayName</key> | ||
<string>Save to $(APP_PRODUCT_NAME)</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.