Я смотрел вокруг здесь, чтобы найти похожие проблемы, но почему-то мой BroadcastReceiver никогда не заканчивает получение андроида .intent.action.BOOT_COMPLETED Intent.
Вот мой (относительный) файл Android.Manifest:
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED"></uses-permission>
<receiver android:name=".BootReceiver"
android:enabled="true"
android:exported="true"
android:label="BootReceiver">
<intent-filter>
<action android:name="android.intent.action.BOOT_COMPLETED"></action>
</intent-filter>
</receiver>
И вот фактический приемник.
public class BootReceiver extends BroadcastReceiver {
private static final String TAG="BootReceiver";
@Override public void onReceive(Context context,Intent intent){
try{
context.startService(new Intent(context,ConnectivityListener.class));
Log.i(TAG,"Starting Service ConnectivityListener");
}catch(Exception e){
Log.e(TAG,e.toString());
}
}
}
Спасибо! Любая помощь приветствуется