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;
|
2014-10-17 05:01:38 -04:00
|
|
|
public static final int CARBON_GRACE_PERIOD = 60;
|
2014-10-24 07:29:18 -04:00
|
|
|
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-09-08 17:58:37 -04:00
|
|
|
|
2014-08-31 12:21:46 -04:00
|
|
|
public static final int MESSAGE_MERGE_WINDOW = 20;
|
2014-09-08 17:58:37 -04:00
|
|
|
|
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 MAX_HISTORY_AGE = 7 * MILLISECONDS_IN_DAY;
|
|
|
|
public static final long MAX_CATCHUP = MILLISECONDS_IN_DAY / 2;
|
2014-12-08 15:59:14 -05:00
|
|
|
|
2014-08-31 10:28:21 -04:00
|
|
|
private Config() {
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|