Installation

Development setup

Install CocoaPods using the CocoaPods installation guide.

Once CocoaPods is installed, create a file named Podfile in your projects root directory and add the following code to it:

Podfile
1source 'https://github.com/CocoaPods/Specs.git'
2 use_frameworks!
3 platform :ios, '11.0'
4 target 'Your_Target_Name' do
5 pod 'YocoSDK', '~> 5.2.12'
6 end

Configure your iOS project to use a minimum deployment target of 11.0.

Change Your_Target_Name to your project’s name (unless the target has a different name). Open up a terminal, navigate to your projects root directory and run the following command:

Installation
$ pod install --repo-update

You should now be able to open up your project’s .xcworkspace file in your project’s root directory and be ready to go.

If you come across any issues, please see the troubleshooting guide.