Installing the SDK

In order to install the SDK we will use CocoaPods, a dependency manager for iOS/MacOS projects. For more info on Cocoapods, visit: https://cocoapods.org/
In your podfile, insert the following pod info:

# other podfile info

target '*Your-Target*'
use_frameworks!

pod 'CMPComapiChat'

end

then, in your project directory, run:

$ pod install

To use the framework, simply import like so:

#import <CMPComapiChat/CMPComapiChat.h>
import CMPComapiChat

and you're good to go.