1package ${packageName}; 2 3import android.app.Service; 4import android.content.Intent; 5import android.os.IBinder; 6 7public class ${className} extends Service { 8 public ${className}() { 9 } 10 11 @Override 12 public IBinder onBind(Intent intent) { 13 // TODO: Return the communication channel to the service. 14 throw new UnsupportedOperationException("Not yet implemented"); 15 } 16} 17