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

  1. Fetch the SDK:

    • Add the following Maven repository in your build.gradle file:
      repositories {
          maven {
              url "https://artifactory.newrosetta.com/artifactory/mobile-sdk"
          }
      }
  2. Download the SDK:

    • Add the following dependency in your build.gradle file:
      implementation 'com.newrosetta.lexicon:mobile-sdk:1.0.0'
  3. Configure Client and Secret Key:

    • Create a lexicon_config.xml file in your res/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>
  4. 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" />
  5. 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

iOS Integration

  1. Fetch the SDK:

    • Add the following source in your Podfile:
      source 'https://artifactory.newrosetta.com/artifactory/cocoapods'
  2. Download the SDK:

    • Add the following to your Podfile:
      pod 'LexiconMobileSDK', '~> 1.0.0'
  3. 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>
  4. 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>
  5. Enable Tracing:

    • To enable tracing for testing in the stage environment, add the following in your initialization code:
      LexiconSDK.initialize(enableTracing: true)

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

  1. Select the POS SDK:

    • Choose the appropriate SDK for your hardware vendor.
  2. Receive SDK Artifact:

    • NewRosetta and the hardware vendor will provide the SDK artifact configured for your system.
  3. 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.