Installation with CocoaPods
Learn the CocoaPods Getting Started Guide if you are new to CocoaPods.
info
It is advised to use the latest version of CocoaPods. Please, check your version with pod --version
and upgrade it if necessary.
Complete the following steps to get the Photo Editor SDK dependencies using CocoaPods:
- install CocoaPods using Homebrew:
brew install cocoapods
- create a new Podfile in your project folder or edit the existing one:
pod init
- add the necessary pods and our podspecs sources to the Podfile. The list of the required Photo Editor dependencies can be found in the Podfile example:
source 'https://cdn.cocoapods.org/'
source 'https://github.com/Banuba/specs.git'
source 'https://github.com/sdk-banuba/banuba-sdk-podspecs.git'
pod 'BanubaPhotoEditorSDK', '1.2.5' - install the Video Editor SDK pods:
pod install --repo-update
- open the
***.xcworkspace
workspace in Xcode and run the project.