New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details
Socket
Book a DemoSign in
Socket

react-native-regula-document-reader

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

react-native-regula-document-reader

react-native wrapper for Regula Document Reader

latest
npmnpm
Version
1.0.0
Version published
Weekly downloads
5
-54.55%
Maintainers
1
Weekly downloads
 
Created
Source

react-native-regula-document-reader

Getting started

npm install react-native-regula-document-reader --save

Mostly automatic installation

react-native link react-native-regula-document-reader

iOS

  • Add to Podfile:
  pod 'DocumentReader', '~> 4.0'
  pod 'DocumentReaderFull', '~> 4.0'
  • Generate license for your application bundle ID: https://licensing.regulaforensics.com/. Convert it to a base64 string, e.g.: fs.readFileSync('./path/to/regula.license').toString('base64')
  • Download database from: https://licensing.regulaforensics.com/Customer/Account/Databases. Add it to the iOS project (db.dat).
  • Go to your project Targets -> Builds Settings -> Always Embed Swift Standard Libraries - set to Yes
  • Go to your project Targets -> Info -> Add new key Privacy - Camera Usage Description = “Your message that will be appeared during ask to run camera”.

Android

  • Open your top level build.gradle (android/build.gradle)
  • add the block below:
allprojects {
  repositories {
    maven {
      url "http://maven.regulaforensics.com/RegulaDocumentReader"
    }
  }
}
  • In your app level build.gradle:
  • increate 'minSdkVersion' to 19 (if it's below)
  • Open AndroidManifest.xml file and set: android:allowBackup="true"
  • mkdir -p android/app/src/main/res/raw/
  • Copy regula.license to that folder
  • This project comes bundled with a db.dat, but if you want to use the latest, download it from Regula and copy it to node_modules/react-native-regula-document-reader/android/src/main/assets/Regula/

Usage

import RegulaDocumentReader, { Scenario } from 'react-native-regula-document-reader';

// do this early on to save some time
await RegulaDocumentReader.initialize({
  licenseKey: base64LicenseKeyYouCreatedAbove
}) 

// initialize on the fly, and scan
// set options as you like
// see Regula docs for what they mean
await RegulaDocumentReader.scan({
  functionality: {
    showTorchButton: true,
    showCloseButton: true,
    showCaptureButton: true,
    showCaptureButtonAfterDelay: true,
    showSkipNextPageButton: true,
    videoCaptureMotionControl: true,
    showChangeFrameButton: true,
  },
  customization: {
    showHintMessages: true,
    showHelpAnimation: true,
  },
  processParams: {
    scenario: Scenario.mrz,
    multipageProcessing: false,
    dateFormat: 'dd-mm-yyyy',
  },
})

Keywords

regula

FAQs

Package last updated on 11 Mar 2019

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts