Back to project page EnklawaPlayer.
The source code is released under:
GNU General Public License
If you think the Android project EnklawaPlayer 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 macbury.pod.receivers; /*from w w w.java 2 s .com*/ import android.content.BroadcastReceiver; import android.content.Context; import android.content.Intent; import macbury.pod.managers.App; public class BootReceiver extends BroadcastReceiver { public BootReceiver() { } @Override public void onReceive(Context context, Intent intent) { App.current().alarms.setup(); } }