FAQ
Common Sharing Services issues and solutions
Why doesn't text appear in my Facebook share?
// Facebook: Images and URLs only
if (SocialShareComposer.IsComposerAvailable(SocialShareComposerType.Facebook))
{
var imageItem = ShareItem.Screenshot();
var urlItem = ShareItem.URL(URLString.URLWithPath("https://yourgame.com"));
// Text will be ignored by Facebook
SharingServices.ShowSocialShareComposer(
SocialShareComposerType.Facebook,
callback: null,
imageItem,
urlItem
);
}When should I use ShareSheet vs specific composers?
How can I detect if the user actually shared the content?
Why doesn't MailComposer show on my device?
Can I share both text and image to WhatsApp on iOS?
Why doesn't MessageComposer support subject on Android?
How do I share high-resolution screenshots without quality loss?
Can I customize the appearance of ShareSheet?
How do I share files like PDFs or documents?
Why does my social composer say platform is unavailable?
Can I share without showing any UI?
How do I track which platform users shared to?
Why are my email attachments too large to send?
Can I pre-fill recipients in MessageComposer?
Does ShareSheet work in Unity Editor?
How do I handle sharing errors gracefully?
Can I share animated GIFs?
Where can I confirm plugin behavior versus my implementation?
Last updated