Back to project page CSCI567---Workspace.
The source code is released under:
MIT License
If you think the Android project CSCI567---Workspace listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package csci567.doodleexample; /* w w w .java2s . com*/ import android.content.BroadcastReceiver; import android.content.Context; import android.content.Intent; public class SampleBootReceiver extends BroadcastReceiver { SampleAlarmReceiver alarm = new SampleAlarmReceiver(); @Override public void onReceive(Context context, Intent intent) { if (intent.getAction().equals("android.intent.action.BOOT_COMPLETED")) { alarm.setAlarm(context); } } }