Last active
December 31, 2018 04:22
-
-
Save kgleong/22f114029ab1ce15ba9a184272ef1f93 to your computer and use it in GitHub Desktop.
Google Sign In App Delegate - Client ID
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import GoogleSignIn | |
| class AppDelegate: UIResponder, UIApplicationDelegate { | |
| func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool { | |
| GIDSignIn.sharedInstance()?.clientID = "769307225775-llbr5f6avrd35u7rpto9p700p2g900qr.apps.googleusercontent.com" | |
| return true | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment