<aside> đź’ˇ Table of content

  1. Initialize the SDK
    1. Installation
    2. Initialization
    3. Verification
  2. Configure Triggers
    1. Screen trigger
    2. Custom event trigger
  3. Add hidden fields </aside>

1. Initialize the SDK

Once installed, the Android Told SDK lets you display in-app surveys from our platform, without having to make any changes to your application.

Requirements:

1.a Installation

The initial step doesn't involve code; it occurs directly on our platform. It entails entering the bundle ID (namespace) of your Android application.

Untitled

Told Android SDK is published to Maven Central. Add dependency below in your app/build.gradle file.

dependencies {
	implementation("club.told:told-android-sdk:1.0.3")
}

If Maven Central is not already included, you will need to add it to your app/settings.gradle file.

repositories {
	mavenCentral()
}

The SDK needs the permissions INTERNET , WRITE_EXTERNAL_STORAGE and READ_EXTERNAL_STORAGE to work well. Please add these permissions to your application manifest.