Asks the delegate to open a resource specified by a URL, and provides a dictionary of launch options.
Example of usage:
func application(_ app: UIApplication, open url: URL, options: [UIApplicationOpenURLOptionsKey : Any] = [:]) -> Bool {
return SomeManager.shared.handle(
url,
sourceApplication: options[.sourceApplication] as? String,
annotation: options[.annotation]
)
}