/* * This file is part of Popcorn Time. * * Popcorn Time 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. * * Popcorn Time 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 Popcorn Time. If not, see <http://www.gnu.org/licenses/>. */ package pct.droid.base; public class Constants { public static Boolean DEBUG_ENABLED = BuildConfig.DEBUG; // will be set to true for debug builds and false for release builds public static final String PREFS_FILE = "PCT_Prefs"; public static final String DATABASE_NAME = "PCT_DB.db"; public static final Integer DATABASE_VERSION = 1; public static final Integer SERVER_PORT = 55723; public static final String GIT_URL = "https://git.popcorntime.ml/"; public static final String POPCORN_URL = "https://popcorntime.ml/"; public static final String FB_URL = "http://fb.popcorntime.ml"; public static final String BLOG_URL = "https://blog.popcorntime.ml"; public static final String DISCUSS_URL = "https://discuss.popcorntime.ml"; public static final String TWITTER_URL = "https://twitter.com/popcorntimece"; public static final String CAST_ID = "887D0748"; }