Skip to main content

Getting Started

LikeMinds iOS Chat SDK empowers you to integrate personalized and engaging chat feature into your iOS application, enhancing user experiences and driving user engagement. This guide will walk you through the steps to get started with the LikeMinds iOS Chat SDK in your application. Obtain the necessary API key from the LikeMinds dashboard.

note

Initializing LikeMindsChatData is essential; without it, access to its full range of features is impossible.

tip

It is recommended to initialize LikeMindsChatData early in your app's lifecycle, preferably within the didFinishLaunchingWithOptions method.

Step-by-step guide

1. Add Dependency

Implement the LikeMinds Chat SDK dependency to setup the Chat SDK.

  1. Add this entry in Podfile
target '--YourProjectTargetName--' do
use_frameworks!
pod 'LikeMindsChatData'
end
  1. Run the command.
pod install

2. Initiate LikeMinds Chat SDK

let lmChatClient = LMChatClient.builder()
.build()