简体   繁体   中英

Why isn't my Android boot receiver working?

I am developing a small android application in which I wanted to start some service once the device boot is completed.

This is the code I used to try to accomplish this, but it not receiving boot complete event, so it isn't working.

//in manifest file 
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />

<receiver android:name="MyScheduleReceiver" >
        <intent-filter>
            <action android:name="android.intent.action.BOOT_COMPLETED" />
        </intent-filter>
    </receiver>

//my schedule receiver 
public class MyScheduleReceiver extends BroadcastReceiver {

  @Override
  public void onReceive(Context context, Intent intent)
  {
      if("android.intent.action.BOOT_COMPLETED".equals(intent.getAction()))
      {
         Log.i("*************************TEST", "Service loaded at start");
         Toast.makeText(context, "device started", Toast.LENGTH_SHORT).show();
      }
  }
} 

MyScheduleReceiver never gets triggered; am I doing something wrong?

You miss a dot before MyScheduleReceiver

<receiver android:name=".MyScheduleReceiver" >
    <intent-filter>
        <action android:name="android.intent.action.BOOT_COMPLETED" />
    </intent-filter>
</receiver>

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM