package cn.com.basic.face.service;
|
|
import android.app.Service;
|
import android.content.Intent;
|
import android.os.Binder;
|
import android.os.IBinder;
|
import android.support.annotation.Nullable;
|
|
public class IdCardReaderService extends Service {
|
|
@Nullable
|
@Override
|
public IBinder onBind(Intent intent) {
|
return null;
|
}
|
|
public class IdCardBinder extends Binder {
|
|
}
|
|
}
|