ajith-ab / react-native-receive-sharing-intent

A React Native plugin that enables React Native apps to receive sharing photos, videos, text, urls or any other file types from another app
MIT License
297 stars 108 forks source link

[docs] Update ios ShareViewController with UIImage #126

Open mackenziekira opened 2 years ago

mackenziekira commented 2 years ago

Shared images can have type URL, but they may also have type UIImage.

Our share extension was crashing when an image was shared from a screenshot preview, or from the Twitter app, but not when images were shared from the Photos app, etc.

This change worked for us: if the shared image is a UIImage, then download it to a tmp directory and use that as the src url for the copied image.