This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Call from App Delegate | |
func application(_ app: UIApplication, open url: URL, options: [UIApplication.OpenURLOptionsKey: Any] = [:]) -> Bool { | |
guard let components = URLComponents(string: url.absoluteString), let scheme = components.scheme else { return true } | |
let absolute = url.absoluteString | |
let path = absolute.replacingOccurrences(of: "\(scheme)://", with: "") | |
launchCoordinator.appCoordinator.deepLink(path: path) | |
return true |
OlderNewer