Reading finger print data using rd services in Android
npm install react-native-rd-servicessh
npm install react-native-rd-services
`
or using yarn
`sh
yarn add react-native-rd-services
`
Usage
`js
import RdServices from "react-native-rd-services";
// ... DeviceType may like package name of RD service example :
// com.precision.pb510.rdservice, com.scl.rdservice, com.scl.rdservice, com.secugen.rdservice and so on
let pidOption =
" ";
RdServices.getFingerPrint(DeviceType, pidOption).then( (result)
{
const { status, message } = result;
console.log('Status', status);
console.log('Status', message);
}
);
``