CocoaPods trunk is moving to be read-only. Read more on the blog, there are 12 months to go.

DANGoogleSignIn 1.0.0

DANGoogleSignIn 1.0.0

TestsTested
LangLanguage Obj-CObjective C
License MIT
ReleasedLast Release Apr 2015

Maintained by Daniel Tomlinson.



A quick wrapper around Google's web authentication for mobile devices.

Usage

let viewController = DANGoogleSignInViewController(clientId: "your google client id", scopes: ["your google scopes"])
navigationController.pushViewController(viewController, animated: true)

or in legacy projects:

DANGoogleSignInViewController *viewController = [[DANGoogleSignInViewController alloc] initWithClientId:@"your google client id" scopes:@[@"your google scopes"]];
[self.navigationController pushViewController:viewController animated:YES];

Installation instructions

CocoaPods is the recommended installation method.

pod 'DANGoogleSignIn'