When tapping a Universal Link, it’s opening my app, but none of the App Delegate functions I’ve implemented are being called:
func scene(_ scene: UIScene, openURLContexts URLContexts: Set<UIOpenURLContext>) {
print("call 1")
}
func application(_ application: UIApplication, continue userActivity: NSUserActivity, restorationHandler: @escaping ([UIUserActivityRestoring]?) -> Void) -> Bool {
print("call 2")
}
func scene(_ scene: UIScene, continue userActivity: NSUserActivity) {
print("call 3")
}
func scene(_ scene: UIScene, willConnectTo session: UISceneSession, options connectionOptions: UIScene.ConnectionOptions) {
print("call 4")
}
Am I doing something wrong? I’ve gone through dozens of tutorials and reread the Apple documentation several times. I’ve verified that my AASA file is good.