/* * Copyright (C) 2010 Thomas Lahn */ package de.pointedears.converter; import android.app.Application; /** * Converter application class. Holds the intent category for building * the list menu. Might later initialize prefs. * * @author Thomas 'PointedEars' Lahn */ public class ConverterApplication extends Application { /** * Activity category for automatically filtering converter Activities */ public final static String CATEGORY_CONVERTER = "android.intent.category.CONVERTER"; //$NON-NLS-1$ /* * (non-Javadoc) * * @see android.app.Application#onCreate() */ @Override public void onCreate() { /* * This populates the default values from the preferences XML file. See * {@link DefaultValues} for more details. */ // PreferenceManager.setDefaultValues(this, R.xml.default_values, false); } /* * (non-Javadoc) * * @see android.app.Application#onTerminate() */ @Override public void onTerminate() { } }