🚀 DAY 5 OF LAUNCH WEEK: Introducing Socket Firewall Enterprise.Learn more →
Socket
Book a DemoInstallSign in
Socket

@exodus/react-native-facetec-zoom

Package Overview
Dependencies
Maintainers
37
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@exodus/react-native-facetec-zoom

unofficial react-native bridge for Facetec's Zoom SDK

latest
npmnpm
Version
2.0.1
Version published
Weekly downloads
15
275%
Maintainers
37
Weekly downloads
 
Created
Source

react-native-facetec-zoom

unofficial react-native bridge for Facetec's Zoom SDK.

Functions

  • liveness detection
  • ...TODO

Install

Common

npm i -S tradle/react-native-facetec-zoom
react-native link react-native-facetec-zoom

iOS

This library has been tested with version 8.1.0 of the SDK

First, download ZoomAuthentication.framework from one of these sources:

Unzip the file, locate ZoomAuthentication.framework, copy it to your ios/ directory, and drag it to your project in XCode (Check the Copy items if needed option when asked)

Add a Copy File phase to your Xcode project and have ZoomAuthentication.framework copied to Destination Frameworks

If you have an Objective-C project, add a blank Swift file to your project (File -> New -> Swift File), with a bridging header (it will prompt you to auto-create one).

add NSCameraUsageDescription to your Info.plist, e.g.:

<key>NSCameraUsageDescription</key>
<string>verify liveness with Zoom</string>

Android

In your project's build.gradle (android/build.gradle), add the maven block below:

allprojects {
  repositories {
    //  ...
    maven {
        url 'http://maven.facetec.com'
    }
}

If you want to override the default version of the Zoom SDK, add:

```gradle
ext {
  // ...
  zoomSdkVersion = '7.0.11' // <--- whichever version you want to use
  // ...
}

This module depends on [react-native-image-store](https://github.com/tradle/react-native-image-store), so you'll need to npm install and react-native link that one too.

## Usage

See example app at https://github.com/tradle/rnzoomexample

Keywords

react-native

FAQs

Package last updated on 29 Oct 2020

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