Google Sign in CocoaPods Install in Swift? Google Sign in CocoaPods Install in Swift? ios ios

Google Sign in CocoaPods Install in Swift?


I got it working by adding this to my bridging header:

#import <GooglePlus/GooglePlus.h>#import <GoogleOpenSource/GoogleOpenSource.h>

then swift had access to google sign in :)


try below pod

pod 'GoogleSignIn', '~> 2.2'


I'm quite late answering this question, but it would appear that the pod install problem was a problem with Cocoapods itself. I updated Cocoapods to its most recent version (now 0.39.0), and I was able to install all the Google pods. I was then able to add lines to my bridging header as niebloomj suggested in this answer and access all of the libraries in Swift.