https://github.com/somnathkadam/react-native-rd-services
Reading finger print data using RD services in Android
https://github.com/somnathkadam/react-native-rd-services
aadhar-data fingerprint react-native
Last synced: over 1 year ago
JSON representation
Reading finger print data using RD services in Android
- Host: GitHub
- URL: https://github.com/somnathkadam/react-native-rd-services
- Owner: SomnathKadam
- License: mit
- Created: 2021-05-19T13:46:49.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2022-12-09T08:53:09.000Z (over 3 years ago)
- Last Synced: 2024-03-25T12:20:19.438Z (over 2 years ago)
- Topics: aadhar-data, fingerprint, react-native
- Language: Java
- Homepage:
- Size: 362 KB
- Stars: 2
- Watchers: 1
- Forks: 1
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
README
# react-native-rd-services
Reading finger print data using RD services in Android.
RD service supported device :
1. Morpho
2. Mantra
3. PB510
4. SecuGen
5. ACPL FM220
6. Aratek A600
## Installation
```sh
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);
}
);
```
## Contributing
See the [contributing guide](CONTRIBUTING.md) to learn how to contribute to the repository and the development workflow.
## License
MIT