mirror of
https://github.com/laurent22/joplin.git
synced 2024-12-03 08:35:29 +02:00
.. | ||
Base.lproj | ||
Source | ||
Info.plist | ||
JoplinCommonShareExtension.podspec | ||
JoplinRNShareExtension.podspec | ||
README.md | ||
ShareExtension.entitlements |
Share Extension Creation Instructions
Creating the Target
- In Xcode select File->New->Target
- Then search for Share Extension
- Select Share Extension and click Next
- In Product Name enter ShareExtension
- Leave the rest of the options and click Finish
- If the Activate "ShareExtension" scheme popup comes, click Activate
Configuring the Share Extension
- Delete ShareViewController.h and ShareViewController.m from the project. (Select files and right click, then Delete)
- On the confirmation popup, select Move to Trash
- Now add ShareViewController.h and ShareViewController.m from ShareExtension/Source/ShareExtenstion. This can be done by right clicking on the ShareExtension folder in Xcode and selecting Add Files to "Joplin". Double check that the ShareExtension is checked for Add to targets and click Add.
- Switch over to git and reset the changes done to ShareExtension/Base.lproj/Maininterface.storyboard and ShareExtension/Info.plist, as Xcode generated new versions of these files and overwrote ours.
- Now select the ShareExtension Target and go to Signing & Capabilities
- Click the + Capability and search for App Groups and add it
- Back in git reset ShareExtension/ShareExtension.entitlements as Xcode just overwrote it. Back in Xcode you should see the app group set
- Now switch to General, just left of Signing & Capabilites
- Under Deployment Info, change the iOS version to match the Joplin target version, which is 9.0
Configuring Joplin
- We need to perform the same steps to add the App Group as done for the Share Extension, the only difference is the entitlements files is Joplin.entitlements
Final Steps
- Run pod install from the ios directory to install the new pods
Other Information
App Group
If the app group name needs to be changed for some reason, it needs to be changed for both the Share Extension and Joplin. Also ShareExtensionGroupIdentifier in ShareExtension/Source/Common/ShareExtensionConstants.m needs to be changed to match the new app group.