Skip to main content
Version: 2.2.x

Getting started

Installation

Our JOIN Stories Android SDK is hosted on Maven Central.

You first need to add it and its dependencies to your app/build.gradle file.

android {
dependencies {
...
implementation 'com.joinstoriessdk:androidsdk:<latest-version>'
...
}
}

Configuration

Before using any feature offered by the SDK, you have to initialize it. It's recommanded to do that in Application class.

To do so, you will need a JOIN Stories team ID and then call:

class App : Application() {

override fun onCreate() {
super.onCreate()

JoinStories.init(context: this, joinAlias: "your_join_team_id")
}
}