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	public static final int MINI_GRACE_PERIOD = 750;
15
16	public static final int AVATAR_SIZE = 192;
17	public static final Bitmap.CompressFormat AVATAR_FORMAT = Bitmap.CompressFormat.WEBP;
18
19	public static final int MESSAGE_MERGE_WINDOW = 20;
20
21	public static final int  PROGRESS_UI_UPDATE_INTERVAL = 750;
22
23	public static final boolean NO_PROXY_LOOKUP = false; //useful to debug ibb
24
25	private Config() {
26
27	}
28}