I am integrating Google Sign-In in my ios Swift app. I am following the official instructions on the google developer page here(https://developers.google.com/identity/sign-in/ios/sign-in?ver=swift )
Here is my Bridging Header:
#ifndef Header_h
#define Header_h
#endif /* Header_h */
#import <CommonCrypto/CommonCrypto.h>
#import <FBSDKCoreKit/FBSDKCoreKit.h>
#import <FBSDKLoginKit/FBSDKLoginKit.h>
#import <GoogleSignIn/GoogleSignIn.h>
When I call the line in my AppDelegate.swift
function that has
GGLContext.sharedInstance().configureWithError(&configureError)
in it. It says
Use of unresolved identifier 'GGLContext'
Any help is appreciated.