Mouse hove over .MyApplication. This will show a small popover and then click on Create Class 'MyApplication'.
This will create class for you automatically, you can also create the class manually.
Now add the onCreate method to your newly created Application class. Later, we'll be going to add PushAlert Android SDK initialization code in this method.
import android.app.Application;
public class MyApplication extends Application {
@Override
public void onCreate() {
super.onCreate();
//Add PushAlert Android SDK Initialization Code
}
}