Back to project page sms-backup-plus.
The source code is released under:
Apache License
If you think the Android project sms-backup-plus 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.zegoggles.smssync.compat; /*w w w . j a v a2 s . com*/ import android.app.Service; import android.content.Intent; import android.os.IBinder; public class HeadlessSmsSendService extends Service { @Override public IBinder onBind(Intent intent) { return null; } }