I\'m using Google Sign-In for iOS and when using simulator it\'s working fine because no google app is installed and user is fetch, but when using my iPhone 6 device open yo
The issue for me was that
func signIn(signIn: GIDSignIn!,
didSignInForUser user: GIDGoogleUser!,
withError error: NSError!)
is not existing anymore, use instead
public func sign(_ signIn: GIDSignIn!,
didSignInFor user: GIDGoogleUser!,
withError error: Error!)
Note the difference didSignInForUser vs. didSignInFor.
Most probably after updating the SDK to swift 3.