massapina / mobile-sdk-ios

Jumio Mobile SDK for iOS

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Jumio

Table of Content

Release notes

Applies to all products.

  • Changed provider for SDK frameworks, sample code and documentation to Github

Basic Setup

General Requirements

The minimum requirements for the SDK are:

  • iOS 8.0 and higher
  • Internet connection

The following architectures are supported in the SDK:

  • armv7 and arm64 for devices
  • x86_64 for iOS simulator

App thinning and size matters

The iOS 9 feature app thinning (app slicing, bitcode and on-demand resources) is supported within the SDK. For app slicing, the image resources are moved to an xcassets collection. For Fastfill & Netverify, some resource files (e.g. images) are being loaded on demand.

Permissions

The app’s Info.plist must contain an NSCameraUsageDescription key with a string value explaining to the user how the app uses this data. Its value can look like this: “This will allow to take photos of your credentials."

Integration

Check the Xcode sample project to learn the most common use. Make sure to use the device only frameworks for app submissions to the AppStore.

Cocoapods

Jumio supports cocoapods as dependency management tool for easy integration of the SDK.

Add our private repository as source to your Podfile and state the use_frameworks! command:

source 'http://mobile-sdk.jumio.com/distribution.git'
use_frameworks!

Choose the pod according to the product you use and suiting your configuration.

pod 'JumioMobileSDK' # If you use BAM Checkout along Netverify in your app. Frameworks supporting device architectures only.

pod 'JumioMobileSDK/Netswipe' # Specify Netswipe as subspec to only use the BAM Checkout part of the Jumio Mobile SDK
pod 'JumioMobileSDK/Netverify' # Specify Netverify as subspec to only use the Netverify part of the Jumio Mobile SDK

pod 'JumioMobileSDK-FAT' # For development purposes, use the frameworks with device and simulator support (also supports subspecs)

Manual

The Jumio Mobile SDK consists of several dynamic frameworks. Add specific frameworks to your Xcode project, depending on which product you use.

The following table shows which frameworks have to be added:

Product JumioCore Netswipe Netverify MicroBlink (*)
Fastfill & Netverify x x x
Netverify Multi Document x x
BAM Checkout credit card scanning x x
BAM Checkout credit card + ID scanning x x x x

In case you use a combination of these products, make sure to add frameworks only once to your app and that those frameworks are linked and embedded in your Xcode project. Two packages are available with frameworks for device only and frameworks with device and simulator support. Make sure to use the device only frameworks for app submissions to the AppStore.

(*) The MicroBlink framework can optionally be left out (do not add to your app project) to reduce app size. Instead, the native barcode scanner is used, that has a slight disadvantage in speed and capture reliability.

Add the following linker flags to your Xcode Build Settings:
Note: Added automatically if using CocoaPods.

  • "-lc++"
  • "-ObjC" (recommended) or -all_load

Make sure that the Xcode build setting "Link Frameworks Automatically" in your project is set to YES.

Localization

All label texts and button titles can be changed and localized using the Localizable-<YOUR_PRODUCT>.strings file. Just adapt the values to your required language and add it to your app project. This way, when upgrading our SDK to a newer version, your localization file won't be overwritten. Make sure, that the content of your localization file is up to date after an SDK update. Note: If using CocoaPods, the original file is located under /Pods/JumioMobileSDK.

With accessibility support, visually impaired users can now enable VoiceOver or change the font size on their device. VoiceOver uses existing localization values, just some new strings were added to the localization file.

Get started

Support

Previous version

The previous release version 2.4.0 of the Jumio Mobile SDK is supported until 2017-07-06.

In case the support period is expired, no bug fixes are provided anymore (typically fixed in the upcoming versions). The SDK will keep functioning (until further notice).

Contact

If you have any questions regarding our implementation guide please contact Jumio Customer Service at support@jumio.com or https://support.jumio.com. The Jumio online helpdesk contains a wealth of information regarding our service including demo videos, product descriptions, FAQs and other things that may help to get you started with Jumio. Check it out at: https://support.jumio.com.

Two-factor Authentication

If you want to enable two-factor authentication for your Jumio merchant backend please contact us at https://support.jumio.com. Once enabled, users will be guided through the setup upon their first login to obtain a security code using the "Google Authenticator" app.

Copyright

© Jumio Corp. 268 Lambert Avenue, Palo Alto, CA 94306

About

Jumio Mobile SDK for iOS


Languages

Language:Objective-C 99.7%Language:C 0.2%Language:CMake 0.1%