Back to project page led-notifier.
The source code is released under:
Apache License
If you think the Android project led-notifier 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 com.ciubotariu_levy.lednotifier; //w w w . j a v a 2 s. co m import android.content.BroadcastReceiver; import android.content.Context; import android.content.Intent; public class AlarmDismissReceiver extends BroadcastReceiver { @Override public void onReceive(Context context, Intent intent) { NotificationUtils.dismissAlarm(context); } }