Skip to content

Latest commit

 

History

History
19 lines (14 loc) · 598 Bytes

File metadata and controls

19 lines (14 loc) · 598 Bytes

iOS Setup

  • Install Plugin.LinkedIn package into your iOS project.

Prerequisites

AppDelegate.cs

Override OpenUrl method

Override the OpenUrl method from AppDelegate class:

public override bool OpenUrl(UIApplication application, NSUrl url, string sourceApplication, NSObject annotation)
{
    return LinkedInClientManager.OpenUrl(application, url, sourceApplication, annotation);
}

<= Back to Table of Contents