npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2025 – Pkg Stats / Ryan Hefner

io.ezto.verify.react.internal

v3.0.0

Published

io.ezto.verify.react.internal

Downloads

4

Readme

Ezto Verify

Wrapper for handling the ezto verify SDK in React Native Apps.

Installation

  • Add io.ezto.verify.react.internal as local dependency in package.json
"dependencies": {
    "io.ezto.verify.react.internal": "file:../io.ezto.verify.react.internal"
}
  • Run yarn to install the dependencies
  1. For Android add below implementation to build.gradle
dependencies {
    implementation "io.ezto.verify:sdk:1.0.15"
}
  1. Add below code to repositories section in build.gradle
maven {
    url "https://gitlab.grootan.com/api/v4/projects/573/packages/maven"
     credentials(HttpHeaderCredentials) {
        name "Deploy-Token"
        value "YourTokenHere"
    }
     authentication {
        header(HttpHeaderAuthentication)
    }
}

Note: This is an requirement to use Biometrics

  • Navigate to ios folder using cd ios and run pod install

  • Open .xcworkspace in xcode

  • Go to Build Phases => Link Binary With Libraries and add the below frameworks

    node_modules/io.ezto.verify.react.internal/ios/debug/eztoverify_sdk.framework
    node_modules/io.ezto.verify.react.internal/ios/release/eztoverify_sdk.framework

Add Required permissions

  1. For Android add below permissions to AndroidManifest.xml
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.CAMERA" />
<uses-permission android:name="android.permission.RECORD_AUDIO" />
<uses-permission android:name="android.permission.VIDEO_CAPTURE" />
<uses-permission android:name="android.permission.AUDIO_CAPTURE" />
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
  1. For iOS add required usage descriptions to info.plist
	<key>NSFaceIDUsageDescription</key>
	<string>FaceID is required for user authentication</string>
	<key>NSMicrophoneUsageDescription</key>
	<string>Mic access is required for user authentication</string>
	<key>NSCameraUsageDescription</key>
	<string>Camera access is required for user authentication</string>
    <key>NSLocationAlwaysAndWhenInUseUsageDescription</key>
	<string>Location access is required for user authentication</string>
	<key>NSLocationWhenInUseUsageDescription</key>
	<string>Location access is needed for user authentication.</string>
  1. Add webcredentials with your tenant url to ios/Runner.entitlements
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
	<key>aps-environment</key>
	<string>development</string>
	<key>com.apple.developer.associated-domains</key>
	<array>
		<string>webcredentials:example.ezto.io</string>
        <!-- Replace example.ezto.io with your ezto verify workspace url -->
	</array>
</dict>
</plist>

Note: This is an requirement to use Fido

Usage

const McWrapper = NativeModules.EztoVerifyServiceImpl;
const eventEmitter = new NativeEventEmitter(McWrapper);

export function MyListener(this: any) {
  this.eventListener = eventEmitter.addListener(
    'onClosed', // Don't change the eventType
    (event: any) => {
      //Transaction has completed
    }
  );
  this.eventListener = eventEmitter.addListener(
    'onError', // Don't change the eventType
    (event: any) => {
      //SDK has thrown some error
    }
  );
  this.eventListener = eventEmitter.addListener(
    'onResult', // Don't change the eventType
    (event: any) => {
        //This will be called if the Result Hook notification way in Ezto dashboard is set to Mobile_Sdk
        //Only called if the authentication flow is completed successfully
    }
  );
  this.eventListener = eventEmitter.addListener(
    'onPermissionDenied', // Don't change the eventType
    (event: any) => {
        //The user has denied runtime permission
    }
  );
}

When push message is received call onPushReceived method

import { onPushReceived } from 'io.ezto.verify.react.internal';

messaging().onMessage(async (remoteMessage) => {
    //Push Support can be Firebase or HMS based on the push service used
    onPushReceived(remoteMessage.data, encryptionString, 'firebase');
})

To launch the QR Scanner

    import { launchQrScanner } from 'io.ezto.verify.react.internal';

    //Push Support can be Firebase or HMS based on the push service used
    launchQrScanner(encryptionString, 'firebase');