Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Using Google Service for iOS without using GoogleService-Info.plist

I am able to use both Google SignIn and Analytics using GoogleService-Info.plist.

However, to reduce dependency, I want to move the information from the GoogleService-Info.plist into another .plist that contains my other information.

Would this be possible? If so, how can I do this?

like image 600
Bebekucing Avatar asked Sep 02 '15 20:09

Bebekucing


1 Answers

You can - both libraries allow you to configure them manually. You'll want to drop any references to GGLContext, and just setup the libraries directly:

[GIDSignIn sharedInstance].clientID = @"YOUR_CLIENT_ID";

and

[[GAI sharedInstance] trackerWithTrackingId:@"UA-XXXX-Y"]; 

You can check the reference docs for Analytics and Sign In for more.

like image 135
Ian Barber Avatar answered Oct 08 '22 07:10

Ian Barber