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 boolean PARSE_EMOTICONS = false;
22 public static final int PROGRESS_UI_UPDATE_INTERVAL = 750;
23
24 public static final boolean NO_PROXY_LOOKUP = false; //useful to debug ibb
25
26 private Config() {
27
28 }
29}