Я никогда не достигаю BootReceiver ??
В моем манифесте у меня есть:
<receiver android:name=".app.service.receiver.BootReceiver" android:enabled="true">
<intent-filter>
<action android:name="android.intent.action.BOOT_COMPLETED" />
<category android:name="android.intent.category.HOME" />
</intent-filter>
</receiver>
<service android:name=".app.service.Process">
<intent-filter>
<action android:name=".app.service.Process" />
</intent-filter>
</service>
на моем BootReceiver у меня есть:
package cc.com.app.service.receiver;
import android.content.BroadcastReceiver;
import android.content.Context;
import android.content.Intent;
public class BootReceiver extends BroadcastReceiver {
@Override
public void onReceive(Context context, Intent intent) {
Intent serviceIntent = new Intent();
serviceIntent.setAction("cc.com.service.Process");
context.startService(serviceIntent);
}
}