Applies to Netverify. Fastfill, Document Verification an BAM Checkout is unchanged. SDK version: 2.10.1
- Adapt handling for legal masking in Netherlands
The requirements for the SDK are:
- Android 4.4 (API level 19) or higher
- ARMv7 processor with Neon, ARM64-v8a
- Internet connection
Required permissions are linked automatically by the SDK.
The following permissions are optional:
<uses-permission android:name="android.permission.VIBRATE"/>
<uses-feature android:name="android.hardware.camera" android:required="false"/>
Note: On devices running Android Marshmallow (6.0) and above, you need to acquire android.permissions.CAMERA
dynamically before initializing the SDK.
Use getRequiredPermissions
to get a list of all required permissions.
public static String[] getRequiredPermissions();
If you are using Proguard, add the following lines in its configuration.
-keep class com.jumio.** { *; }
-keep class jumio.** { *; }
-keep class com.samsung.** { *; }
-keep class com.samsung.**$* { *; }
-dontwarn com.samsung.**
-keep class com.microblink.** { *; }
-keep class com.microblink.**$* { *; }
-dontwarn com.microblink.**
Use the SDK in your application by including the Maven repositories with the following build.gradle
configuration in Android Studio:
repositories {
maven { url 'https://maven.google.com/' }
maven { url 'https://mobile-sdk.jumio.com' }
}
Check the Android Studio sample projects to learn the most common use.
You can filter which architecture to use by specifying the abiFilters.
Note: The abiFilters command in the ndk closure affects the Google Play Store filtering.
defaultConfig {
ndk {
abiFilters "armeabi","armeabi-v7a","arm64-v8a","mips","mips64","x86","x86_64"
}
}
The apk can be splitted based on the architecture if multiple apks should be uploaded to the Google Play Store. Google Play Store manages to deliver the appropriate apk for the device.
splits {
abi {
enable true
reset()
include "armeabi","armeabi-v7a","arm64-v8a","mips","mips64","x86","x86_64"
universalApk false
}
}
Note: You get an UnsatisfiedLinkError, if the app and the CPU architecture do not match.
Our SDK supports the default Android localization features for different languages and cultures.
All label texts and button titles in the SDK can be changed and localized by adding the required Strings you want to change in a strings.xml
file in a values
directory for the language and culture preference that you want to support. You can check out strings that are modifiable at ../res/values/strings.xml
within our Sample application.
Our SDK supports accessibility features. Visually impaired users can now enable TalkBack or change the font size on their device. The accessibility-strings that are used by TalkBack contain accessibility_ in their key and can be also modified in the strings.xml
.
- Integration Netverify & Fastfill SDK
- Integration Document Verification SDK
- Integration BAM Checkout SDK
The previous release version 2.10.0 of the Jumio Mobile SDK is supported until 2018-06-01.
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).
If you want to enable two-factor authentication for your Jumio customer portal 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.
If you have any questions regarding our implementation guide please contact Jumio Customer Service at [email protected] 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.
© Jumio Corp. 268 Lambert Avenue, Palo Alto, CA 94306