2013-09-17 18:14:30 +00:00
|
|
|
/*******************************************************************************
|
2014-05-24 11:37:03 +00:00
|
|
|
* Copyright (c) 2014 Ricki 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
|
|
|
|
******************************************************************************/
|
|
|
|
package at.bitfire.davdroid;
|
|
|
|
|
|
|
|
public class Constants {
|
|
|
|
public static final String
|
2014-10-31 15:40:01 +00:00
|
|
|
APP_VERSION = "0.6.5",
|
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
|
|
|
}
|