Back to project page tetravex-android.
The source code is released under:
GNU General Public License
If you think the Android project tetravex-android listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
/* * Copyright (C) 2014 John Hunt <john.alma.hunt@gmail.com> *//from w w w . j a v a2 s . com * This file is part of Tetravex Android. * * Tetravex Android 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 3 of the License, or * (at your option) any later version. * * Tetravex Android 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 Tetravex Android. If not, see <http://www.gnu.org/licenses/>. */ package com.github.tetravex_android; /** * Contains constants to be used in the Tetravex Android application */ public class Constants { public static final String DEFAULT_SIZE = "3"; public static final String TAG_EMPTY_TILE = "EMPTY_TILE"; public static final String TAG_NUMBERED_TILE = "NUMBERED_TILE"; public static final int DB_TIME_COL_IDX = 1; public static final int DB_DATE_COL_IDX = 2; public static final int DEFAULT_BOARD_SIZE = 3; public static final int MAX_SCORES_PER_BOARD = 10; public static final int BUTTONS_FADE_IN_MS = 4500; }