2014-08-31 16:28:21 +02: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;
|
|
|
|
public static final int CARBON_GRACE_PERIOD = 60;
|
|
|
|
|
|
|
|
public static final int AVATAR_SIZE = 192;
|
|
|
|
public static final Bitmap.CompressFormat AVATAR_FORMAT = Bitmap.CompressFormat.WEBP;
|
2014-08-31 18:21:46 +02:00
|
|
|
|
|
|
|
public static final int MESSAGE_MERGE_WINDOW = 20;
|
2014-09-03 09:15:07 +02:00
|
|
|
|
|
|
|
public static final boolean PARSE_EMOTICONS = false;
|
2014-08-31 16:28:21 +02:00
|
|
|
|
|
|
|
private Config() {
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|