Skip to main content

Getting Started

LikeMinds iOS Feed SDK empowers you to integrate personalized and engaging feeds 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 Feed SDK and set up a dynamic feed 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 Feed 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()