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 LikeMindsFeed is essential; without it, access to its full range of features is impossible.

tip

It is recommended to initialize LikeMindsFeed 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 Feed SDK.

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

2. Initiate LikeMinds Feed SDK

let lmFeedClient = LMFeedClient.builder()
.build()