IDTech Android SDK Guide  1.00.130
API reference for PipReader
Allocate/initialize PipReader objects:

Initialize IDT_Device object by passing context and OnReceiverListener delegate.

// declaring the instance of the PipReader;
private IDT_PipReader myPipReader = null;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
if(myPipReader!=null){
myPipReader.unregisterListen();
myPipReader.release();
myPipReader = null;
}
myPipReader = new IDT_PipReader(this,getActivity());
myPipReader.registerListen();
BLE_Id = "BLE_NAME"; //Change this to the BLE device name to match during a search
scanLeDevice(true, BLE_ScanTimeout);
}