Back to project page umbrella.alert.
The source code is released under:
GNU General Public License
If you think the Android project umbrella.alert listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package macbury.umbrella; // ww w . ja v a2 s . c o m import android.app.Application; import android.app.Notification; import macbury.umbrella.managers.AlarmsManager; import macbury.umbrella.managers.IntentsManager; import macbury.umbrella.managers.NotificationsManager; import macbury.umbrella.managers.ServicesManager; import macbury.umbrella.managers.StoreManager; /** * Created by macbury on 26.08.14. */ public class UmbrellaApplication extends Application { public AlarmsManager alarms; public ServicesManager services; public IntentsManager intents; public NotificationsManager notifications; public StoreManager store; @Override public void onCreate() { super.onCreate(); store = new StoreManager(this); alarms = new AlarmsManager(this); services = new ServicesManager(this); intents = new IntentsManager(this); notifications = new NotificationsManager(this); alarms.setup(); } }