Back to project page LocationService.
The source code is released under:
Apache License
If you think the Android project LocationService 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.manuelpeinado.locationservice; /* ww w .j av a 2s . c o m*/ import android.content.BroadcastReceiver; import android.content.Context; import android.content.Intent; /** * Created by manuel on 21/07/13. */ public class BootCompletedReceiver extends BroadcastReceiver { @Override public void onReceive(Context context, Intent intent) { context.startService(new Intent(context, LocationService.class)); } }