1 package com.android.testplugin; 2 3 import android.app.Service; 4 import android.content.Intent; 5 import android.os.IBinder; 6 7 public class TestPlugin extends Service { 8 9 @Override onBind(Intent intent)10 public IBinder onBind(Intent intent) { 11 // TODO Auto-generated method stub 12 return null; 13 } 14 15 } 16