CocoaPods trunk is moving to be read-only. Read more on the blog, there are 17 months to go.
Connect with customers at every step of their journey. Deliver the best in-app experience with Mobilisten’s live chat and voice call support. Mobilisten makes it easy for customers to reach you from any screen within your app, get their questions answered instantly, and make confident, informed decisions.
You can integrate Mobilisten in your application using Cocoapods using the Mobilisten pod.
Here is an example Podfile where Mobilisten is included.
source 'https://github.com/CocoaPods/Specs.git'
platform :ios, '13.0'
target 'Project Target' do
use_frameworks!
pod 'Mobilisten', '10.0.0'
# Only if using audio call support
pod 'MobilistenCalls', '1.0.0'
end
Note: When using "pod MobilistenCalls", it is mandatory to add "pod Mobilisten".
After Mobilisten is added to your Podfile, run the pod install
command to complete the Installation.
You can now integrate Mobilisten with your app using SPM 🎉 Learn More
You can now integrate Mobilisten Calls with your app using SPM 🎉 Learn More
Mobilisten comes with a set of highly configurable APIs to suit your needs. Register your app's Bundle ID via the SalesIQ Console to generate the App
and Access
keys for Mobilisten.
Use the ZohoSalesIQ.initWithAppKey(:accessKey:completion:)
API to initialize Mobilisten.
import Mobilisten
import MobilistenCalls // Only if using audio call support
// Initialize MobilistenCalls (only if you're using it)
ZohoSalesIQCalls.initialise()
// Initialize Mobilisten SDK
ZohoSalesIQ.initWithAppKey("YOUR_APP_KEY", accessKey: "YOUR_ACCESS_KEY") { error in
if error == nil {
print("Mobilisten initialized successfully.")
} else {
print("Initialization failed: \(error?.message)")
}
}
You can find the list of all APIs and their documentation here under the API Reference section