react-native-zk-fingerprint-scanner
v0.2.1
Published
A library to connect to ZK fingerprint scanner
Downloads
6
Readme
react-native-zk-fingerprint-scanner
This library let you connect to ZK Fingerprint scanner in your react-native app. This library is only for Android platform.
Installation
npm install react-native-zk-fingerprint-scanner
Target SDK version
Change target sdk version to 33 in /android/build.gradle
New architecture
Set newArchEnabled=true in /android/gradle.properties
Generate schema
Cd to /android and run
./gradlew generateCodegenArtifactsFromSchema
Usage
import * as React from 'react';
import {StyleSheet, View, Text, Button, Image} from 'react-native';
import {
setup,
connectDevice,
disconnectDevice,
} from 'react-native-zk-fingerprint-scanner';
import {DeviceEventEmitter} from 'react-native';
export default function App() {
const [image, setImage] = React.useState<string>();
const [isConnected, setIsConnected] = React.useState<boolean>(false);
React.useEffect(() => {
DeviceEventEmitter.addListener('onDeviceConnected', e => {
setIsConnected(true);
});
DeviceEventEmitter.addListener('onDeviceDisconnected', e => {
setIsConnected(false);
});
DeviceEventEmitter.addListener('onGotImage', e => {
setImage(e);
});
}, []);
return (
<View style={styles.container}>
<Image
source={{uri: `data:image/png;base64,${image}`}}
style={{width: 100, height: 100, backgroundColor: 'blue'}}
/>
<Text>Connected: {isConnected ? 'Yes' : 'No'}</Text>
<Button
title="Setup"
onPress={() => {
setup();
}}></Button>
<Button
title="Connect device"
onPress={async () => {
connectDevice();
}}></Button>
<Button
title="Disconnect"
onPress={async () => {
disconnectDevice();
}}></Button>
</View>
);
}
const styles = StyleSheet.create({
container: {
flex: 1,
alignItems: 'center',
justifyContent: 'center',
gap: 20,
},
});
Contributing
See the contributing guide to learn how to contribute to the repository and the development workflow.
License
MIT
Made with create-react-native-library