This repo was deprecated.
Please install new version of ChannelIO(>=8.0.0). show this Link
Channel io - Talk with your online customers and increase conversions.
Channel is a conversational customer relationship management solution (CRM) for web businesses. Designed to capture potential customers before they leave your site and increase conversions, the web-based SaaS lets you see who’s on your site, what they’re looking at, how long/frequent they’re visiting and finally, drop in and give a little “hello” to online customers in real time.
Prerequisite
- iOS 9.1 or above
Documentation
https://developers.channel.io/docs
Install Channel plugin Framework from CocoaPods(iOS 9.1+)
Add below into your Podfile on Xcode.
target YOUR_PROJECT_TARGET do
pod 'ChannelIO'
end
Install Channel plugin Framework through CocoaPods.
pod repo update
pod install
Now you can see Channel plugin framework by inspecting YOUR_PROJECT.xcworkspace.
Install Channel plugin Framework from Carthage(iOS 9.1+)
- Add
github "zoyi/channel-plugin-ios"
to yourCartfile
. - Run
carthage update --platform iOS --no-use-binaries
. - Go to your Xcode project's "General" settings. Open
<YOUR_XCODE_PROJECT_DIRECTORY>/Carthage/Build/iOS
in Finder and dragChannelIO.framework
to the "Linked Frameworks and Libraries" section in Xcode along with other dependencies. Make sureCopy items if needed
is selected and clickFinish
. - Remove
RxTest
andRxBlocking
frameworks - Add Build phase in order to use carthage framework (see carthage instruction)