blob: 3388f1b36cac0a4059bb7eaa19ed836ff6cbdb66 [file] [log] [blame]
package android.nfc.cts;
import android.content.Intent;
import android.nfc.cardemulation.*;
import android.os.IBinder;
public class CtsMyOffHostApduService extends OffHostApduService {
@Override
public IBinder onBind(Intent intent) {
return null;
}
}