Hello!
I use an UIActivityViewController in order to share some data generated in my app. Everything worked just perfectly until a few days ago a lot of the sharing options just disappeared (eg. Google Drive). Now, only "AirDrop", "Mail", Notes" and "Save to Files" is possible. That is the code:
I did not change the code in the app and I also did not update my device. What could be the problem? What could lead to the options not being there anymore?
I use an UIActivityViewController in order to share some data generated in my app. Everything worked just perfectly until a few days ago a lot of the sharing options just disappeared (eg. Google Drive). Now, only "AirDrop", "Mail", Notes" and "Save to Files" is possible. That is the code:
Code Block func save(path: URL) { DispatchQueue.main.async { let ac = UIActivityViewController(activityItems: [path], applicationActivities: nil) if let popover = ac.popoverPresentationController { popover.sourceView = self.confidence } self.present(ac, animated: true) } }
I did not change the code in the app and I also did not update my device. What could be the problem? What could lead to the options not being there anymore?