Now I'm trying to implement Google Login. I followed like this : https://developers.google.com/identity/sign-in/ios/sign-in?ver=swift
But I got a error in AppDelegate.swift :
class AppDelegate: UIResponder, UIApplicationDelegate, GIDSignInDelegate
....
error :
Type 'AppDelegate' does not conform to protocol 'GIDSignInDelegate'
Help me.
You need to implement these two methods of
GIDSignInDelegate
in yourAppDelegate
.