Config.java

 1package eu.siacs.conversations;
 2
 3import android.graphics.Bitmap;
 4
 5public final class Config {
 6
 7	public static final String LOGTAG = "conversations";
 8
 9	public static final int PING_MAX_INTERVAL = 300;
10	public static final int PING_MIN_INTERVAL = 30;
11	public static final int PING_TIMEOUT = 10;
12	public static final int CONNECT_TIMEOUT = 90;
13	public static final int CARBON_GRACE_PERIOD = 60;
14
15	public static final int AVATAR_SIZE = 192;
16	public static final Bitmap.CompressFormat AVATAR_FORMAT = Bitmap.CompressFormat.WEBP;
17
18	public static final int MESSAGE_MERGE_WINDOW = 20;
19
20	public static final boolean PARSE_EMOTICONS = false;
21
22	private Config() {
23
24	}
25}