Back to project page pixlexpo.
The source code is released under:
GNU General Public License
If you think the Android project pixlexpo 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 dbaranski.pixlexpo; //from w ww .jav a 2 s. co m import android.content.BroadcastReceiver; import android.content.Context; import android.content.Intent; import android.util.Log; public class PixlExpoBroadcastReciever extends BroadcastReceiver { static final String TAG = "PixlExpoBroadcastReciever"; @Override public void onReceive(Context context, Intent intent) { Log.v(TAG, "starting service on first boot!"); Intent startServiceIntent = new Intent(context, PixlExpoService.class); context.startService(startServiceIntent); } }