Back to project page SSPIA.
The source code is released under:
MIT License
If you think the Android project SSPIA 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.fiec.sspia.system; //from ww w . j a v a 2 s.co m import android.content.BroadcastReceiver; import android.content.Context; import android.content.Intent; public class StartingNotis extends BroadcastReceiver{ @Override public void onReceive(Context context, Intent intent) { Intent service = new Intent(context, SspiaService.class); context.startService(service); } }