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