Register Landing Class

Prev Next

If you do not have a landing class, you can follow these instructions to register your class. If you have one, you can proceed to initialize Insider SDK.

1. Create a new Java Class following New > Java Class.
2. You can name it as MyApplicationClass. Extend with Application class.

MyApplicationClass.java:

import android.app.Application;
public class MyApplicationClass extends Application {
}

3. Register MyApplicationClass inside the AndroidManifest.xml manifest:

android:name=".MyApplicationClass"