I have been trying to use LoginKit from Snapchat to connect a user's bitmoji and Snap info, however after allowing access on Snapchat, it just stays on a yellow screen, not redirecting to my app. I have verified that the info.plist is properly set up and that the Redirect URL is the same as in the SnapKit Dev portal. I believe it may have something to do with this bit of code in the AppDelegate, which is based off of what Snapchat suggests in their development guide:
func application(_ app: UIApplication,
open url: URL,
options: [UIApplication.OpenURLOptionsKey : Any] = [:]) -> Bool {
return SCSDKLoginClient.application(app, open: url, options: options)
}
I believe it may have something to do with iOS 13 as this link suggests. However, I was unable to properly adjust with the SCSDKLoginClient information. Please let me know what can be done to fix this. Thanks in advance.