let activityViewController = UIActivityViewController(activityItems: send as [Any], applicationActivities: nil)
activityViewController.excludedActivityTypes = [.airDrop, .saveToCameraRoll, .copyToPasteboard,
]
Looking for a simple .addToSharedAlbum or similar to .saveToCameraRoll to disable the option but have not been able to disable the ability to save the item to shared albums.
Is this possible? How do I disable this 'Add To Shared Album' option?
Thanks in advance