Back to project page rfcx-guardian-android.
The source code is released under:
Apache License
If you think the Android project rfcx-guardian-android 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 org.rfcx.guardian.receiver; /*ww w. j av a 2 s .c o m*/ import org.rfcx.guardian.RfcxGuardian; import android.content.BroadcastReceiver; import android.content.Context; import android.content.Intent; import android.util.Log; public class BootReceiver extends BroadcastReceiver { private static final String TAG = BootReceiver.class.getSimpleName(); @Override public void onReceive(Context context, Intent intent) { Log.d(TAG, "BootReceiver Launching Intent Services"); ((RfcxGuardian) context.getApplicationContext()).onBootServiceTrigger(); } }