Handle iOS Custom Views via expo-share-extension
mainThis project does not support iOS Custom Views (native views in the context of sharing intent). All sharing logic is managed within the main application.
If your project requires iOS Custom View support, you should:
- Disable the iOS configuration of the
expo-share-intentplugin in yourapp.jsonusingdisableIOS: true. - Use the
expo-share-extensionpackage instead.
// app.json snippet to disable iOS configuration
{
"expo": {
"plugins": [
["expo-share-intent", { "disableIOS": true }]
]
}
}