Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit c290eb4f authored by Raj Yengisetty's avatar Raj Yengisetty Committed by Rajesh Yengisetty
Browse files

Set default SMS outgoing check interval to 15 minutes

Change-Id: I61c506d931df7c5c437c3fddf72495c836a7107f
(cherry picked from commit 8af63654)
parent ba3804d3
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -69,7 +69,7 @@ public class SmsUsageMonitor {
    private static final String SHORT_CODE_PATH = "/data/misc/sms/codes";

    /** Default checking period for SMS sent without user permission. */
    private static final int DEFAULT_SMS_CHECK_PERIOD = 60000;      // 1 minute
    private static final int DEFAULT_SMS_CHECK_PERIOD = 15 * 60 * 1000;      // 15 minutes

    /** Default number of SMS sent in checking period without user permission. */
    private static final int DEFAULT_SMS_MAX_COUNT = 30;