package com.novoda.defaultsmsapp; import android.app.Service; import android.content.Intent; import android.os.IBinder; public class HeadlessSmsSendService extends Service { public HeadlessSmsSendService() { } @Override public IBinder onBind(Intent intent) { // TODO: Return the communication channel to the service. throw new UnsupportedOperationException("Not yet implemented"); } }