Back to project page sms-backup-plus.
The source code is released under:
Apache License
If you think the Android project sms-backup-plus listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.zegoggles.smssync.preferences; /*from w w w . j a va 2 s . c o m*/ class Defaults { /** * Default value for {@link Preferences#MAIL_SUBJECT_PREFIX}. */ public static final boolean MAIL_SUBJECT_PREFIX = false; /** * Default value for {@link Preferences#ENABLE_AUTO_BACKUP}. */ public static final boolean ENABLE_AUTO_SYNC = false; /** * Default value for {@link Preferences#INCOMING_TIMEOUT_SECONDS}. */ public static final int INCOMING_TIMEOUT_SECONDS = 60 * 3; /** * Default value for {@link Preferences#REGULAR_TIMEOUT_SECONDS}. */ public static final int REGULAR_TIMEOUT_SECONDS = 2 * 60 * 60; // 2h /** * Default value for {@link Preferences#MAX_ITEMS_PER_SYNC}. */ public static final int MAX_ITEMS_PER_SYNC = -1; public static final int MAX_ITEMS_PER_RESTORE = -1; public static final boolean MARK_AS_READ_ON_RESTORE = true; }