Android SDK

Setting up the Conscent.ai SDK (Loyalty Platform) in your Android app

Initialize SDK

The following guide provides steps to initialize the Conscent.ai SDK for your Android application. Please follow all the steps below carefully.

minimum sdk required is 26. Please change it in app/build.gradle

Add Dependencies

Add Auth Token

To access Bluepine’s private JitPack library, add this line in your project's gradle.properties file (your_project/gradle.properties):

authToken=jp_lumadc0egqfu7bvmh1g7pe9t13

Add JitPack Repository

In your project-level build.gradle file (your_project/build.gradle), add the

maven repository inside the allprojects closure:

buildscript {
     ...
   }
   allprojects {
      repositories {
          ...
          maven {
              url "http://jitpack.io"
              credentials { username authToken }
} }
}

Gradle 7.0+

If the allprojects closure does not exist, in your project's settings.gradle file (your_project/settings.gradle), add the maven repository:

Add the Conscent.ai SDK dependency

Sync your project with Gradle files by clicking Sync Now.

Sync should succeed, at this point

Pair SDK with Dashboard

Register Package Name

Open your Conscent .aiDashboard and go to Settings > Basic Details and register a Package Name.

Set Package Name

Bluepine.setPackageName("<package_name_same_as_registered_in_cons cent_dashboard>");

Initialize SDK

The final step of initialization is to call the setPartnerIdAndUserId method. Initialise with a Partner ID

Initialize the SDK in your app's Application class or main entry point of the app. For integration purposes:

  • If you are under activity

  • If you are in a composable

Last updated