Skip to main content

Getting Started

LikeMinds Android Feed SDK empowers you to integrate personalized and engaging feeds into your Android application, enhancing user experiences and driving user engagement. This guide will walk you through the steps to get started with the LikeMinds Android Feed SDK and set up a dynamic feed in your application. Obtain the necessary API key from the LikeMinds dashboard.

note

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

Step-by-step guide

1. Add Dependency

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

  1. Add the dependency of LikeMindsFeedSDK in the app level build.gradle.
dependencies {
...
implementation community.likeminds:likemindsfeed:1.7.2
}
  1. Now initialize LMFeedClient in your application class by passing the instance of your application and a callback (optional).
    LMFeedClient.Builder(application)
.lmCallback(this)
.build()
note

Once you have initialized LMFeedClient you can use LMFeedClient.getInstance() to call any function for data.