blob: e4c07366d65e93327ee3c5556ce3193591aee454 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
package de.pixart.messenger.services;
import android.content.BroadcastReceiver;
import android.content.Context;
import android.content.Intent;
import android.support.v4.content.ContextCompat;
import android.util.Log;
import de.pixart.messenger.Config;
import de.pixart.messenger.utils.Compatibility;
public class AlarmReceiver extends BroadcastReceiver {
public static final int SCHEDULE_ALARM_REQUEST_CODE = 523976483;
@Override
public void onReceive(Context context, Intent intent) {
if (intent.getAction().contains("exportlogs")) {
Log.d(Config.LOGTAG, "Received alarm broadcast to export logs");
try {
if (Compatibility.runsAndTargetsTwentySix(context)) {
ContextCompat.startForegroundService(context, new Intent(context, ExportLogsService.class));
} else {
context.startService(new Intent(context, ExportLogsService.class));
}
} catch (RuntimeException e) {
Log.d(Config.LOGTAG, "AlarmReceiver was unable to start ExportLogsService");
}
}
}
}
|