Skip to content

Installation

David De Bels edited this page May 23, 2021 · 2 revisions

Requirements

  • iOS 11 or above

Installation

NotionClient does not use any external dependencies.

Manually

  1. Open NotionClient.xcodeproj
  2. Build the NotionClient-iOS scheme
  3. Copy the generated NotionClient.framework file to your project

Using CocoaPods

Add NotionClient to your Podfile and run pod install.

# Podfile
platform :ios, '11.0'

target 'YOUR_TARGET_NAME' do
    # Dynamic frameworks is supported but not required
    use_frameworks!
	
    pod 'NotionClient'
end

Clone this wiki locally