App Is Not Showing in the Share Menu of Shared Options in Shared Extension in iOS8

App is not showing in the share menu of shared options in shared extension in iOS8

This is a bug in iOS. There is no workaround in the current version. File a bug report with Apple and hope that they fix it soon.

My app is not showing up in Share Sheet

There was mistake in My Plist file that's why was facing such issue.

Posting this answer just because may be in future if someone will do such mistake so my answer could help out!

<key>NSExtension</key>
<dict>
<key>NSExtensionAttributes</key>
<dict>
<key>NSExtensionActivationRule</key>
<dict>
<key>NSExtensionActivationSupportsText</key>
<true/>
<key>NSExtensionActivationSupportsWebURLWithMaxCount</key>
<integer>1</integer>
<key>NSExtensionActivationSupportsImageWithMaxCount</key>
<integer>1</integer>
</dict>
</dict>
<key>NSExtensionMainStoryboard</key>
<string>MainInterface</string>
<key>NSExtensionPointIdentifier</key>
<string>com.apple.share-services</string>
</dict>

This is working perfectly fine!

Unable to open the containing app from share menu

Implement the share view controller with app group.

http://easynativeextensions.com/how-to-launch-your-app-from-the-ios-8-share-menu/

iOS Share extension not showing for URLs and Text

It seems to be fixed since I upgraded my Mac OS to the latest version BigSur, Share extensions are showing up normally again



Related Topics



Leave a reply



Submit