Mobile
Lexicon Mobile SDKs
Overview
NewRosetta's Lexicon product offers two powerful SDKs designed to enhance identity verification and reduce fraud.
Mobile SDK
The Mobile SDK allows seamless integration of identity verification and risk validation AI into your existing mobile applications. It supports both Android and iOS platforms.
Point of Sale (POS) SDK
The POS SDK is tailored for embedding the Lexicon experience into point of sale systems or handheld terminals, providing flexibility and convenience while combating fraud.
Mobile SDK Integration Guide
Fetching SDK Artifacts from Artifactory
NewRosetta uses JFrog Artifactory to securely store and distribute SDK artifacts. Follow these steps to fetch the SDKs for Android and iOS.
Android Integration
-
Fetch the SDK:
- Add the following Maven repository in your
build.gradle
file:repositories { maven { url "https://artifactory.newrosetta.com/artifactory/mobile-sdk" } }
- Add the following Maven repository in your
-
Download the SDK:
- Add the following dependency in your
build.gradle
file:implementation 'com.newrosetta.lexicon:mobile-sdk:1.0.0'
- Add the following dependency in your
-
Configure Client and Secret Key:
- Create a
lexicon_config.xml
file in yourres/xml
directory:<?xml version="1.0" encoding="utf-8"?> <resources> <string name="client_key">YOUR_CLIENT_KEY</string> <string name="secret_key">YOUR_SECRET_KEY</string> </resources>
- Create a
-
Enable Camera Access:
- Add the following permissions in your
AndroidManifest.xml
:<uses-permission android:name="android.permission.CAMERA" /> <uses-feature android:name="android.hardware.camera" android:required="true" />
- Add the following permissions in your
-
Enable Tracing:
- To enable tracing for testing in the stage environment, add the following in your initialization code:
LexiconSDK.initialize(this, true); // true enables tracing
- To enable tracing for testing in the stage environment, add the following in your initialization code:
iOS Integration
-
Fetch the SDK:
- Add the following source in your
Podfile
:source 'https://artifactory.newrosetta.com/artifactory/cocoapods'
- Add the following source in your
-
Download the SDK:
- Add the following to your
Podfile
:pod 'LexiconMobileSDK', '~> 1.0.0'
- Add the following to your
-
Configure Client and Secret Key:
- Create a
LexiconConfig.plist
file in your project:<?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>ClientKey</key> <string>YOUR_CLIENT_KEY</string> <key>SecretKey</key> <string>YOUR_SECRET_KEY</string> </dict> </plist>
- Create a
-
Enable Camera Access:
- Add the following permissions in your
Info.plist
:<key>NSCameraUsageDescription</key> <string>We need access to the camera for identity verification.</string>
- Add the following permissions in your
-
Enable Tracing:
- To enable tracing for testing in the stage environment, add the following in your initialization code:
LexiconSDK.initialize(enableTracing: true)
- To enable tracing for testing in the stage environment, add the following in your initialization code:
Best Practices and Versioning
- Ensure that your application always uses the latest version of the SDK to benefit from the latest features and security updates.
- Regularly review and update your configuration files and permissions to comply with best practices and security standards.
Implementation Flow
[Mobile App] --> [Lexicon Mobile SDK] --> [NewRosetta Services] --> [Validation & Risk Analysis]
Point of Sale (POS) SDK Integration Guide
Overview
The POS SDK is designed for embedding the Lexicon experience into point of sale systems or handheld terminals. This integration provides your business with flexibility and convenience while continuously combating fraud.
Supported Systems
- Toshiba Point of Sale System
- Zebra Technologies
- NewRosetta Professional Services (for unsupported systems)
Integration Process
-
Select the POS SDK:
- Choose the appropriate SDK for your hardware vendor.
-
Receive SDK Artifact:
- NewRosetta and the hardware vendor will provide the SDK artifact configured for your system.
-
Embed the SDK:
- Integrate the SDK into your POS system as part of the system update process.
Security and Maintenance
- Key Management: NewRosetta maintains the security of keys, which can be rotated easily without requiring a forced update process.
- System Logging: Logging is streamed to NewRosetta for debugging and production support.
Implementation Flow
[POS System] --> [Lexicon POS SDK] --> [NewRosetta Services] --> [Validation & Risk Analysis]
Additional Resources
For further assistance, please contact NewRosetta Support.
Updated 4 months ago