List of usage examples for android.app Application subclass-usage
From source file nl.mpcjanssen.simpletask.TodoApplication.java
public class TodoApplication extends Application implements SharedPreferences.OnSharedPreferenceChangeListener { private final static String TAG = TodoApplication.class.getSimpleName(); private static Context m_appContext; private static SharedPreferences m_prefs; private LocalBroadcastManager localBroadcastManager; private ArrayList<File> todoTrail = new ArrayList<File>();
From source file io.rapidpro.androidchannel.RapidPro.java
public class RapidPro extends Application { public final int NOTIFICATION_ID = 1; public static Logger LOG = new Logger(); public static final boolean SHOW_WIRE = true;
From source file com.hybris.mobile.Hybris.java
/** * @author philip * */ public class Hybris extends Application {
From source file com.snappy.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.tourmaline.example.ExampleApplication.java
public class ExampleApplication extends Application { private static final String LOG_AREA = "ExampleApplication"; private static final String ApiKey = "bdf760a8dbf64e35832c47d8d8dffcc0"; private static final String user = "androidexample@tourmalinelabs.com";
From source file net.issarlk.androbunny.AndrobunnyApp.java
@ReportsCrashes(formKey = "dEdsYXdwdk1mQjRCYi1aSmRxazBQeFE6MQ") public final class AndrobunnyApp extends Application { public final BitmapCache bitmapCache = new BitmapCache(); private final static String TAG = "InkbunnyApp"; public final Handler handler = new Handler(); //Its Worker
From source file jsettlers.main.android.MainApplication.java
@EApplication public class MainApplication extends Application implements GameStarter, GameManager, IGameExitListener { static { // configure game to be better usable on Android Constants.BUILDING_PLACEMENT_MAX_SEARCH_RADIUS = 10; }
From source file com.radiusnetworks.scavengerhunt.ScavengerHuntApplication.java
/**
* Created by dyoung on 1/24/14.
*
* This is the central application class for the Scavenger Hunt. It is responsible for:
* 1. Initializing ProxomityKit, which downloads all the beacons associated with the hunt
* along with their configured hunt_id values and image_url values. It then starts
From source file uk.org.rivernile.edinburghbustracker.android.Application.java
/**
* This code is the very first code that will be executed when the application
* is started. It is used to register the BugSense handler, put a listener on
* the SharedPreferences for Google Backup on Froyo upwards, and check for bus
* stop database updates.
*
From source file edu.pdx.cecs.orcycle.MyApplication.java
/**
* This class extends the <code>Application<code/> class, and implements it as a singleton.
* This class is used to maintain global application state.
* @author robin5 (Robin Murray)
* @version 1.0
* @see <code>Application<code/> class.