1.0.10 • Published 2 years ago

react-native-ehyc-sdk v1.0.10

Weekly downloads
-
License
MIT
Repository
-
Last release
2 years ago

It's built on top of react-native-vision-camera, react-native-image-resizer and react-native-fs it takes an image component and upon click, you get the image picker prompt, get the base64 string of the image and the image source changes to whatever image was picked.

Installing

npm install react-native-ehyc-sdk

Automatic Installation

  • Add the required permissions in AndroidManifest.xml:
 <uses-permission android:name="android.permission.CAMERA" />
 <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>

IOS

For iOS 11+, Add the NSPhotoLibraryUsageDescription, NSCameraUsageDescription, and NSMicrophoneUsageDescription (if allowing video) keys to your Info.plist with strings describing why your app needs these permissions. Note: You will get a SIGABRT crash if you don't complete this step

<plist version="1.0">
  <dict>
    ...
    <key>NSPhotoLibraryUsageDescription</key>
    <string>YOUR_REASON_FOR_USING_USER_PHOTOS_HERE</string>
    <key>NSCameraUsageDescription</key>
    <string>YOUR_REASON_FOR_USING_USER_CAMERA_HERE</string>
  </dict>
</plist>

Using

import React, { useEffect } from 'react'
import { FaceDetection, LivenessDetection } from 'react-native-ehyc-sdk'
import { NavigationContainer } from '@react-navigation/native';
import { View, Button } from 'react-native';
import { createNativeStackNavigator } from '@react-navigation/native-stack';

const Stack = createNativeStackNavigator();



function HomeScreen({ navigation }: any) {
  return (
    <View style={{ flex: 1, alignItems: 'center', justifyContent: 'center' }}>
      <Button title='Chứng minh nhân dân' onPress={() => navigation.push('CMNDDetectionScreen')} />
      <Button title='Căn cước công dân' onPress={() => navigation.push('CCCDDetectionScreen')} />
      <Button title='Căn cước công dân gắn chip' onPress={() => navigation.push('CCCDQRDetectionScreen')} />
      <Button title='Hộ chiếu' onPress={() => navigation.push('PassportScreen')} />
      <Button title='Liveness Detection' onPress={() => navigation.push('LivenessDetection')} />
    </View>
  );
}

function CCCDDetectionScreen({ navigation }: any) {
  return (
    <View style={{ flex: 1 }}>
      <FaceDetection type='cccd' token='sphinx1' />
    </View>
  );
}


function CMNDDetectionScreen({ navigation }: any) {
  return (
    <View style={{ flex: 1 }}>
      <FaceDetection type='cmnd' token='sphinx1' />
    </View>
  );
}
function PassportScreen({ navigation }: any) {
  return (
    <View style={{ flex: 1 }}>
      <FaceDetection type='passport' token='sphinx1' />
    </View>
  );
}


function CCCDQRDetectionScreen({ navigation }: any) {
  return (
    <View style={{ flex: 1 }}>
      <FaceDetection type='qr_cccd' token='sphinx1' />
    </View>
  );
}


function LivenessDetectionScreen() {
  return (
    <View style={{ flex: 1 }}>
      <LivenessDetection token='sphinx1' />
    </View>
  );
}



const App = () => {


  return <NavigationContainer>
    <Stack.Navigator>
      <Stack.Screen name="Home" component={HomeScreen} />
      <Stack.Screen name="CMNDDetectionScreen" component={CMNDDetectionScreen} />
      <Stack.Screen name="CCCDDetectionScreen" component={CCCDDetectionScreen} />
      <Stack.Screen name="PassportScreen" component={PassportScreen} />
      <Stack.Screen name="CCCDQRDetectionScreen" component={CCCDQRDetectionScreen} />
      <Stack.Screen name="LivenessDetection" component={LivenessDetectionScreen} />
    </Stack.Navigator>
  </NavigationContainer>

}

export default App
1.0.9

2 years ago

1.0.8

2 years ago

1.0.7

2 years ago

1.0.10

2 years ago

1.0.6

2 years ago

1.0.5

2 years ago

1.0.4

2 years ago

1.0.3

2 years ago

1.0.2

2 years ago

1.0.1

2 years ago

1.0.0

2 years ago