Example usage for android.app Application subclass-usage

List of usage examples for android.app Application subclass-usage

Introduction

In this page you can find the example usage for android.app Application subclass-usage.

Usage

From source file cn.ttyhuo.common.MyApplication.java

/**
 * @author Sergey Tarasevich (nostra13[at]gmail[dot]com)
 */
public class MyApplication extends Application {
    @TargetApi(Build.VERSION_CODES.GINGERBREAD)
    @SuppressWarnings("unused")

From source file com.carreygroup.JARVIS.MyApplication.java

public class MyApplication extends Application {
    private Demon demon = null;
    private String mHost = "192.168.1.255";
    private String mPort = "8080";
    private int mEthent = 1;

From source file io.jawg.osmcontributor.OsmTemplateApplication.java

public class OsmTemplateApplication extends Application {

    /*=========================================*/
    /*--------------ATTRIBUTES-----------------*/
    /*=========================================*/
    public static final int NOTIFICATION_ID = 001;

From source file org.ubicompforall.cityexplorer.CityExplorer.java

/**
 * @description:
 * This is an {@link android.app.Application} class.  Ordinarily you would use
 * a class like this as a central repository for information that might be shared between multiple
 * activities.
 * In this case, we have not defined any specific work for this Application.

From source file no.ntnu.idi.socialhitchhiking.SocialHitchhikingApplication.java

public class SocialHitchhikingApplication extends Application {
    private User user;
    private SettingsManager settings;
    private List<Route> routes;
    private List<Journey> journeys;
    private Journey selectedJourney;

From source file com.hybris.mobile.app.commerce.CommerceApplicationBase.java

/**
 * Main Application class to manage and provide functionality over the apps
 */
public abstract class CommerceApplicationBase extends Application {

    protected static final String TAG = CommerceApplicationBase.class.getCanonicalName();

From source file de.gebatzens.sia.SIAApp.java

public class SIAApp extends Application {

    public static final int UPDATE_DISABLE = 0, UPDATE_WLAN = 1, UPDATE_ALL = 2;
    public static SIAApp SIA_APP;

    public MainActivity activity;

From source file dentex.youtube.downloader.YTD.java

public class YTD extends Application implements QueueThreadListener {

    static String DEBUG_TAG = "YTD";
    public static Context ctx;

    // *** development configurations *** // TODO               // for release set to:

From source file com.cloverstudio.spikademo.SpikaApp.java

/**
 * SpikaApp
 * 
 * Basic Application class, holds references to often used single instance
 * objects and methods related to application like application background check.
 */

From source file com.glanznig.beepme.BeeperApp.java

public class BeeperApp extends Application implements SharedPreferences.OnSharedPreferenceChangeListener {

    private PreferenceHandler preferences = null;
    private TimerProfile timerProfile;
    private BeeperApp.CallStateListener callStateListener;