Conversations/src/main/java/eu/siacs/conversations/Config.java

35 lines
1.0 KiB
Java
Raw Normal View History

2014-08-31 10:28:21 -04:00
package eu.siacs.conversations;
import android.graphics.Bitmap;
public final class Config {
public static final String LOGTAG = "conversations";
public static final int PING_MAX_INTERVAL = 300;
public static final int PING_MIN_INTERVAL = 30;
public static final int PING_TIMEOUT = 10;
public static final int CONNECT_TIMEOUT = 90;
public static final int CARBON_GRACE_PERIOD = 60;
public static final int MINI_GRACE_PERIOD = 750;
2014-08-31 10:28:21 -04:00
public static final int AVATAR_SIZE = 192;
public static final Bitmap.CompressFormat AVATAR_FORMAT = Bitmap.CompressFormat.WEBP;
2014-08-31 12:21:46 -04:00
public static final int MESSAGE_MERGE_WINDOW = 20;
public static final int PAGE_SIZE = 50;
2014-11-13 21:27:18 -05:00
public static final int PROGRESS_UI_UPDATE_INTERVAL = 750;
2014-08-31 10:28:21 -04:00
2014-11-14 08:04:34 -05:00
public static final boolean NO_PROXY_LOOKUP = false; //useful to debug ibb
2014-12-13 06:25:52 -05:00
private static final long MILLISECONDS_IN_DAY = 24 * 60 * 60 * 1000;
public static final long MAM_MAX_CATCHUP = MILLISECONDS_IN_DAY / 2;
public static final int MAM_MAX_MESSAGES = 500;
2014-08-31 10:28:21 -04:00
private Config() {
}
}