React Native
This is a walkthrough of how you can integrate the Onboarding or Authenticate SDK for ReactNative applications.
Last updated
This is a walkthrough of how you can integrate the Onboarding or Authenticate SDK for ReactNative applications.
Last updated
In order to perform an Onboarding or an Authenticate, you should follow those steps:
: install and import the SDK
: request a token using your business credentials
: launch a user workflow and use the Message handler to get insights about the user workflow
: use your callback or the endpoint to get the analysis result
The proper functioning of the SDK necessitates the provision of several parameters. These parameters are essential for enabling the full range of functionalities offered by the SDK.
minSdk or minSdkVersion = 24
ShareID use Maven to provide its SDK securely with authentication managed in your AppName/android/build.gradle
file.
To install the SDK, you'll need to add the dependency in your app
module.
Add the following to your build.gradle
You can now synchronise and use the SDK in your project
Conflicts of dependency
The SDK directly integrates most of the dependencies it uses to simplify your integration.
Use the credentials you received from ShareID's team to get an authenticate token and launch an onboarding or authenticate workflow.
Use your token to start an onboarding or an authenticate.
Your folder structure should look like this:
Don't forget to change the AppName field
The JavaScript module acts as an interface between React Native and the native code.
Create a NativeShareID.ts file in the js:
Add a package.json file to the RTNShareID folder:
The Android code is used to implement the native ShareID SDK features.
Create a build.gradle file in the RTNShareID/android folder:
Add a ShareIDPackage.kt file to the RTNShareID/android/src/main/java/com/rtnshareid folder:
Add a ShareIDModule.kt file to the RTNShareID/android/src/main/java/com/rtnshareid folder:
Import the module into your React Native application
Go to your App.tsx (or .js) file and add this import:
To finish, launch your app with this commands
When the processing of an onboarding request is finished, you may receive the result through the callback if you provided it. You may also, fetch yourself the result by calling our API.
The ShareID SDK is designed to be highly customisable, allowing great flexibility through various configuration options or the application of themes to adapt the user interface to your needs. To do this, simply follow this same section in the Android and iOS documentation and add them to your code.
However, conflicts may arise that require you to integrate dependencies yourself (notably , , , etc.).
You must add NSCameraUsageDescription
within your application's Info.plist
file (see ).
ShareID supports with authenticate handled via a .netrc
file.
Depending on the SDK you are integrating (Onboarding/Authenticate), you may use an API here
The creates a bridge between your JavaScript code and native Android code, enabling you to use ShareID's specific features in React Native.
All the code above is an example of Kotlin integration. You can also use Java by referring to the documentation.
See for more details.