Back to project page Android-Universal-Notifier.
The source code is released under:
Apache License
If you think the Android project Android-Universal-Notifier 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 com.mairos.universalnotifier.model; //from ww w . ja va2 s . c o m public class Const { public static final String LOG_TAG = "universalnotifier"; public static final String FROM_WEB = "update_from_web"; public static final String FROM_FOLDER = "update_from_folder"; // identifiers for IntentFilter -> BroadcastReceivers public static final String ACTION_ADD_TO_LOG = "add_string_to_log"; public static final String ACTION_SHOW_CURRENT_TASKS = "get_current_tasks"; // StringExtra names for Intents public static final String DIALOG_MESSAGE = "dialog_message_text"; public static final String TF_MESSAGE = "additional_message_to_textfield"; }