Getting started

Get your Platform keys

Your API requests are authenticated using Platform keys. Any request that doesn't include a platform key will return an error.

You can generate a Platform key from your Trill Dashboard at any time.

Access the Trillbit developer portal https://developers.trillbit.com/.

Add TrillSDK to Android Project

Add TrillSDK to Android Project Download and unzip android.zip.

Copy the sdk-android.aar file to your app directory and add library dependency to Android Project.

To add sdk dependency open build.gradle for the application and then add below line under dependencies section.

dependencies 
{ . 
  .
  . 
  implementation files('sdk-android.aar') 
}

Last updated