nalexn / clean-architecture-swiftui

SwiftUI sample app using Clean Architecture. Examples of working with CoreData persistence, networking, dependency injection, unit testing, and more.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Deeplink first run App

Rofl113 opened this issue · comments

Add to file SceneDelegate:

func scene(_ scene: UIScene, willConnectTo session: UISceneSession, options connectionOptions: UIScene.ConnectionOptions) {
  // ...
  // Check Url
  if connectionOptions.urlContext.isEmpty == false {
    systemEventsHandler?.sceneOpenURLContexts(connectionOptions.urlContext)
  }
}

I've added that, thanks!