Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

pod "Google/SignIn" vs pod "GoogleSignIn"

if you use pod "Google/SignIn", it install GoogleSignIn 3.0.0

if you use pod "GoogleSignIn", it install the last version 4.0.2

However if you run the app with pod "GoogleSignIn", then the app crash with the message:

You have enabled the SignIn service in Developer Console, but it appears as though your Podfile is missing the line: 'pod "Google/SignIn" or you may need to run `pod update` in your project directory.

So GoogleSignIn 3.0.0 is atm the last version to use?

like image 839
Marckaraujo Avatar asked Mar 30 '17 20:03

Marckaraujo


1 Answers

I could make it work with:

pod 'Google/SignIn'
pod 'GoogleSignIn', '~> 4.0'
pod 'Google', '~> 3.0'

The pod 'Google/SignIn' is just to pass the check, since it is an older version then GoogleSignIn then it will be ignored by pod.

You'll need pod 'Google', '~> 3.0' also.

With this you can use Google Sign 4.0+ with no errors.

like image 80
Marckaraujo Avatar answered Nov 02 '22 17:11

Marckaraujo