I have a URL Scheme in my info.plist that allows me to have a website redirect to my iOS app. In AppDelegate you can catch this with a delegate method:
func application(_ app: UIApplication, open url: URL, options: [UIApplication.OpenURLOptionsKey : Any] = [:]) -> Bool {
print("redirected")
return true
}
This all worked fine, but now in iOS 13.2 it just won't trigger anymore... The app does open though, but the delegate doesn't get called. I need this to extract an access token from the URL.
I even created a brand new Xcode project and did everything I am supposed to do according to Apple's docs but it just won't work. Is anyone else experiencing this issue?