package com.limemobile.app.demo.pluginhost; import android.app.Service; import android.content.Intent; import android.os.IBinder; public class HostBindService extends Service { @Override public IBinder onBind(Intent intent) { // TODO Auto-generated method stub return null; } }