Back to project page AndroidPlugin.
The source code is released under:
MIT License
If you think the Android project AndroidPlugin 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.limemobile.app.demo.pluginhost; /* www . j a v a 2s . c o m*/ 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; } }