2014-03-05 23:00:16 +00:00
|
|
|
package eu.siacs.conversations.services;
|
|
|
|
|
|
|
|
import android.content.BroadcastReceiver;
|
|
|
|
import android.content.Context;
|
|
|
|
import android.content.Intent;
|
|
|
|
public class EventReceiver extends BroadcastReceiver {
|
|
|
|
@Override
|
2014-03-06 02:30:03 +00:00
|
|
|
public void onReceive(Context context, Intent intent) {
|
|
|
|
Intent mIntentForService = new Intent(context,
|
|
|
|
XmppConnectionService.class);
|
|
|
|
if ((intent.getAction() != null)
|
|
|
|
&& (intent.getAction()
|
|
|
|
.equals("android.intent.action.BOOT_COMPLETED"))) {
|
|
|
|
|
|
|
|
}
|
2014-03-05 23:00:16 +00:00
|
|
|
context.startService(mIntentForService);
|
2014-03-06 02:30:03 +00:00
|
|
|
}
|
|
|
|
|
2014-03-05 23:00:16 +00:00
|
|
|
}
|