- Install Plugin.GoogleClient package into your iOS project.
- Complete the Google Firebase Console Setup to include the required configuration file to you're projects.
- On the FinishedLaunching method just after calling global::Xamarin.Forms.Forms.Init():
GoogleClientManager.Initialize();Override the OpenUrl method from AppDelegate class:
public override bool OpenUrl(UIApplication app, NSUrl url, NSDictionary options)
{
return GoogleClientManager.OnOpenUrl(app, url, options);
}<= Back to Table of Contents