I've setup my info.plist with the following info. My app is listed when you access a file from an email, but I want my app listed when someone is in their Photos App. Is there something else I need to do to be listed in the Photos app?
<key>CFBundleDocumentTypes</key>
<array>
<dict>
<key>CFBundleTypeIconFiles</key>
<array/>
<key>CFBundleTypeName</key>
<string>MyApp</string>
<key>CFBundleTypeRole</key>
<string>Editor</string>
<key>LSHandlerRank</key>
<string>Owner</string>
<key>LSItemContentTypes</key>
<array>
<string>public.movie</string>
</array>
<key>NSExportableTypes</key>
<array>
<string>public.movie</string>
</array>
</dict>
</array>
e.g. of what I want:
- List item
- User opens stock Photos app
- Selects a video
- Clicks the open/share button
- I want my app listed here (next to Facebook, Vimeo, YouTube, etc.)
In order to get listed in the Photos app, you need to implement a share extension. Docu