package edu.mit.mobile.android.locast; /* * Copyright (C) 2011 MIT Mobile Experience Lab * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version 2 * of the License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ public class Constants { /** * General debugging flag. This needs to be a constant so that the compiler will remove any debugging code. */ public static final boolean DEBUG = false; /** * If true, the user can create casts. */ public static final boolean CAN_CREATE_CASTS = true; /** * Enables a built-in app update checker if the app is not going to be published on the Market. */ public static final boolean USE_APPUPDATE_CHECKER = false; /** * For various cursor views, this says how frequently it should refresh the UI. */ public static final long UPDATE_THROTTLE = 500; public static final boolean USES_OSMDROID = false; }