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.
37 lines
958 B
Java
37 lines
958 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://weloveastrid.com/?page_id=59";
|
|
|
|
/** Flurry API Key */
|
|
public static final String FLURRY_KEY = "T3JAY9TV2JFMJR4YTG16";
|
|
|
|
public static final boolean DEBUG = true;
|
|
|
|
public static final long WIDGET_UPDATE_INTERVAL = 30 * 60 * 1000L;
|
|
|
|
/**
|
|
* Whether to display synchronization
|
|
*/
|
|
public static final boolean SYNCHRONIZE = 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;
|
|
|
|
}
|