Skip to content

Latest commit

 

History

History
24 lines (18 loc) · 681 Bytes

iOSSetup.md

File metadata and controls

24 lines (18 loc) · 681 Bytes

iOS Setup

  • Install Plugin.GoogleClient package into your Android project.

Prerequisites

  1. Complete the Google Firebase Console Setup to include the required configuration file to you're projects.

AppDelegate.cs

  • On the FinishedLaunching method just after calling global::Xamarin.Forms.Forms.Init():
     GoogleClientManager.Initialize();

Override OpenUrl method

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