package com.rudolfheszele.smsselector.controller;
import android.app.Application;
/**
* v 0.1: First basic implementation Done
* v 0.2: Some redesign Done
* v 0.3: Adding the sms receiver service Done
* v 0.4: Supporting the rotation Done (Except the RuleCreatorActivity)
* v 0.5: Some redesign E.g.: State machines, better centralization, better understand of Android
* v 0.6: Better Gui See: http://www.droiddraw.org/
* v 0.7: Comment the code
* v 1.0: First release
*/
// TODO: To be able to read the rules as the messages - to get some progress info...
// TODO: Now the messages are updated, but the rules are not.
/**
* This class represents the Application itself, it is the entry point.
* The main purpose of this class is to initialize the factories
* @author erudhes
* @version 0.2
*/
public class SmsSelectorApplication extends Application
{
/**
* This method is invoked when the application launches
*/
@Override
public void onCreate()
{
super.onCreate();
SmsSelectorMainController.initialize();
}
}
|