bring back connectivity changed events on android n

This commit is contained in:
Daniel Gultsch 2016-08-27 12:15:25 +02:00
parent 78e962ce67
commit 3d5940cb76
1 changed files with 4 additions and 2 deletions

View File

@ -854,10 +854,12 @@ public class XmppConnectionService extends Service {
toggleForegroundService();
updateUnreadCountBadge();
toggleScreenEventReceiver();
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.M
&& !Config.PUSH_MODE) {
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.M && !Config.PUSH_MODE) {
scheduleNextIdlePing();
}
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.N) {
registerReceiver(this.mEventReceiver,new IntentFilter(ConnectivityManager.CONNECTIVITY_ACTION));
}
}
@Override