mirror of https://github.com/tasks/tasks
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
843 B
Java
30 lines
843 B
Java
package com.timsu.astrid.utilities;
|
|
|
|
import android.app.Activity;
|
|
|
|
/** Astrid constants */
|
|
public class Constants {
|
|
|
|
// application constants
|
|
|
|
/** URL of Astrid Help Page */
|
|
public static final String HELP_URL = "http://code.google.com/p/android-astrid/wiki/UserGuide";
|
|
|
|
/** URL of Astrid Feature Survey */
|
|
public static final String SURVEY_URL = "http://www.haveasec.com/survey/m/detail/welcome/bf25e0/";
|
|
|
|
public static final boolean DEBUG = true;
|
|
|
|
// result codes
|
|
|
|
/** Return to the task list view */
|
|
public static final int RESULT_GO_HOME = Activity.RESULT_FIRST_USER;
|
|
|
|
/** Discard changes */
|
|
public static final int RESULT_DISCARD = Activity.RESULT_FIRST_USER + 1;
|
|
|
|
/** Callback to force synchronization */
|
|
public static final int RESULT_SYNCHRONIZE = Activity.RESULT_FIRST_USER + 2;
|
|
|
|
}
|