The session control turns possible track the DAU and MAU of your app, and other cool things. You must add the following lines on every activity of your Android application:
@Override
public void onStart() {
super.onStart();
// must be called on every activity
kiwiSDK.analytics().startSession(this);
}
@Override
public void onStop() {
// must be called on every activity
kiwiSDK.analytics().stopSession(this);
super.onStop();
}