I am very new to app development. I was trying to configure my GoogleSignInButton Callback function.
I get the error:
No active configuration. Make sure GIDClientID is set in Info.plist.
However, my Info.plist defines GIDClientID along with the value generated as advised
OS: Version 13.0 Beta
Xcode:Version 14.1 beta 3
CodePudding user response:
This changes in google sign is new. Also GIDSignIn.sharedInstance.signIn(with: config, presenting: self)
is not available anymore. GIDSignIn.sharedInstance.signIn(withPresenting: presentingVC)
replaced it. But I got same error. Hope to someone find an answer
CodePudding user response:
Same error. I'm newbie too, it helped for me to reinstall packages (GoogleSignIn and FirebaseAuth) with older versions (6.0.0 and 8.6.0) so GIDSignIn.sharedInstance.signIn(with: config, presenting: self)
is available. This is a temporary solution till we find working way.