You can follow these steps to initialize the SDK.
1. Init Insider SDK in your Application Class (landing class).
your title goes here
Keep in mind that "your_partner_name" is the given name of the app panel on the Insider side. You can gather this info from Insider One team or you can log in to the Insider panel and navigate it yourself. It is placed on the right top of the panel, next to the username.


import android.app.Application;
import com.useinsider.insider.Insider;
public class MyApplicationClass extends Application {
@Override
public void onCreate(){
super.onCreate();
// DO NOT FORGET to change your_partner_name.
// Use only lowercase and your_partner_name is provided by Insider.
Insider.Instance.init(this, "your_partner_name");
}
}import android.app.Application
import com.useinsider.insider.Insider
class DemoApplication : Application() {
override fun onCreate() {
super.onCreate()
Insider.Instance.init(this, "your_partner_name")
}
}your title goes here
Make sure that you have initialized Insider SDK in your application class. Please avoid initializing it in the activity class. During your Integration, if you're using your UAT panel, make sure to update "your partner name" value to migrate integration to the live panel.
2. If you have Splash Screen (Splash activity class), this step is critically important to let the Insider SDK perform correctly.
Call the setSplashActivity method right after the init as follows:

import android.app.Application;
import com.useinsider.insider.Insider;
public class MyApplicationClass extends Application {
@Override
public void onCreate(){
super.onCreate();
// DO NOT FORGET to change your_partner_name.
// Use only lowercase and your_partner_name is provided by Insider.
Insider.Instance.init(this, "your_partner_name");
// DO NOT FORGET to change MySplashActivity.class
Insider.Instance.setSplashActivity(MySplashActivity.class);
}
}import android.app.Application
import com.useinsider.insider.Insider
class DemoApplication : Application() {
override fun onCreate() {
super.onCreate()
// DO NOT FORGET to change your_partner_name.
// Use only lowercase and your_partner_name is provided by Insider.
Insider.Instance.init(this, "your_partner_name")
// TODO: Add your splash activity.
//Insider.Instance.setSplashActivity(Splash.activity);
}
}