18 lines
501 B
Java
18 lines
501 B
Java
|
package eu.siacs.conversations.services;
|
||
|
|
||
|
import android.content.BroadcastReceiver;
|
||
|
import android.content.Context;
|
||
|
import android.content.Intent;
|
||
|
|
||
|
public class EventReceiver extends BroadcastReceiver {
|
||
|
@Override
|
||
|
public void onReceive(Context context, Intent intent) {
|
||
|
Intent mIntentForService = new Intent(context, XmppConnectionService.class);
|
||
|
if (intent.getAction().equals("android.intent.action.BOOT_COMPLETED")) {
|
||
|
|
||
|
}
|
||
|
context.startService(mIntentForService);
|
||
|
}
|
||
|
|
||
|
}
|