React Native Starter Kit

React Native SDK For Faceki KYC

The latest Stable Version is V2.0.0

Let's Get your React Native App running with FACEKI SDK

Requirements

Video Demonstration

React Native Getting Started

This project is build on react-native-cli. you can setup your development environment as per the detailed steps mentioned on this link

https://reactnative.dev/docs/environment-setup?guide=native
  1. Install Node.js: React Native requires Node.js, so you'll need to install it on your system. You can download the installer from the Node.js website (https://nodejs.org) and follow the installation instructions for your operating system.

  2. Install a code editor: Choose a code editor that you prefer to work with, such as Visual Studio Code, Atom, or Sublime Text. Install your chosen code editor on your system.

  3. Install Java Development Kit (JDK): React Native relies on Java for Android development. Download and install the JDK appropriate for your operating system. You can find the JDK downloads on the Oracle website (https://www.oracle.com/java/technologies/javase-jdk11-downloads.html).

  4. Install Android Studio: Android Studio provides the necessary tools for Android development. Download and install Android Studio from the official website (https://developer.android.com/studio). Follow the installation instructions and make sure to install the Android SDK during the setup process.

  5. Configure Android environment variables: After installing Android Studio, you'll need to set up some environment variables on your system. These variables include ANDROID_HOME, which should point to the Android SDK directory, and PATH, which should include the platform-tools and tools directories of the Android SDK.

  6. Install Xcode (for macOS only): If you're developing for iOS, you'll need to install Xcode, which is only available on macOS. You can download Xcode from the Mac App Store.

  7. Install react-native-cli: Open a terminal or command prompt and run the following command to install react-native-cli globally on your system

npm install -g react-native-cli

Steps

  1. To use Faceki API, you need to register any of Faceki packages on the link and then access Dashboard >> Integration >> Client-ID

  2. . Click on the hidden eyes and securely copy the Client ID (token).

Please don't share the token with anybody, highly secure and confidential

3. Edit this to your Project's config file located at src/configs/facekiConfig.ts

4. Now you can install the NPM Packages using NPM:

npm i

5. Now you can simply run the Application:

npx react-native start

Last updated