blob: 9b8ce955ec725dce6ac9a0730c6e8686e549b543 [file] [log] [blame]
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;
}
}