Back to project page smsportal-app.
The source code is released under:
MIT License
If you think the Android project smsportal-app 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.sms; //from w w w . j a va2s .c o m import android.content.BroadcastReceiver; import android.content.Context; import android.content.Intent; import android.util.Log; public class BootReceiver extends BroadcastReceiver { @Override public void onReceive(Context arg0, Intent arg1) { Intent intent = new Intent(arg0,SMSService.class); arg0.startService(intent); Log.i("SMS Service", "started on boot"); } }