Unable to find “GoogleService-Info.plist” while trying to integrate Google Sign-in in my app

前端 未结 4 882
我寻月下人不归
我寻月下人不归 2020-12-16 15:19

I have followed : Integrating Google Sign-In into your iOS app

However when I execute the app, it halts in the app delegate itself - even before I can see my first

4条回答
  •  伪装坚强ぢ
    2020-12-16 15:51

    If you wanna get only GCM_SENDER_ID, try this workaround:

    NSError* configureError;
    [[GGLContext sharedInstance] configureWithError:&configureError];
    NSString * gcmSenderID = [GGLContext sharedInstance].gcmSenderID;
    NSLog(@"%@", gcmSenderID);
    

提交回复
热议问题