2013-09-17 18:14:30 +00:00
|
|
|
/*******************************************************************************
|
2014-01-06 04:28:28 +00:00
|
|
|
* Copyright (c) 2014 Richard Hirner (bitfire web engineering).
|
2013-09-17 18:14:30 +00:00
|
|
|
* All rights reserved. This program and the accompanying materials
|
|
|
|
* are made available under the terms of the GNU Public License v3.0
|
|
|
|
* which accompanies this distribution, and is available at
|
|
|
|
* http://www.gnu.org/licenses/gpl.html
|
2014-01-06 04:28:28 +00:00
|
|
|
*
|
|
|
|
* Contributors:
|
|
|
|
* Richard Hirner (bitfire web engineering) - initial API and implementation
|
2013-09-17 18:14:30 +00:00
|
|
|
******************************************************************************/
|
|
|
|
package at.bitfire.davdroid;
|
|
|
|
|
|
|
|
public class Constants {
|
|
|
|
public static final String
|
2014-05-08 19:18:45 +00:00
|
|
|
APP_VERSION = "0.5.13-alpha",
|
2013-09-17 18:14:30 +00:00
|
|
|
ACCOUNT_TYPE = "bitfire.at.davdroid",
|
2014-05-08 19:18:45 +00:00
|
|
|
WEB_URL_HELP = "http://davdroid.bitfire.at/configuration?pk_campaign=davdroid-app",
|
2013-09-17 18:14:30 +00:00
|
|
|
|
2014-05-08 19:18:45 +00:00
|
|
|
SETTING_DISABLE_COMPRESSION = "disable_compression",
|
|
|
|
SETTING_NETWORK_LOGGING = "network_logging";
|
2013-09-17 18:14:30 +00:00
|
|
|
}
|