Raises the check interval to a more reasonable level.

This commit is contained in:
Vavassor 2017-04-27 23:33:43 -04:00
parent 5f6fab2b70
commit 2f27f8efdd
1 changed files with 1 additions and 1 deletions

View File

@ -211,7 +211,7 @@ public class BaseActivity extends AppCompatActivity {
});
} else {
// Start up the MessagingService on a repeating interval for "pull" notifications.
long checkInterval = 60 * 1000; // * 10;
long checkInterval = 60 * 1000 * 5;
AlarmManager alarmManager = (AlarmManager) getSystemService(Context.ALARM_SERVICE);
Intent intent = new Intent(this, MessagingService.class);
final int SERVICE_REQUEST_CODE = 8574603; // This number is arbitrary.