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 PAGE_SIZE = 50;
22 public static final int MAX_NUM_PAGES = 3;
23
24 public static final int PROGRESS_UI_UPDATE_INTERVAL = 750;
25
26 public static final boolean NO_PROXY_LOOKUP = false; //useful to debug ibb
27
28 public static final long MILLISECONDS_IN_DAY = 24 * 60 * 60 * 1000;
29 public static final long MAM_MAX_CATCHUP = MILLISECONDS_IN_DAY / 2;
30 public static final int MAM_MAX_MESSAGES = 500;
31
32 private Config() {
33
34 }
35}