Identity Document Verification¶
The Android and iOS SDKs provide a streamlined way to integrate identity verification flows into your mobile application. These flows support the capture and validation of the following user credentials: Email address, Passport, ID Card, Driving License.
Integrate the SDK's pre-built UI components into your app to guide users through each verification step. This includes interfaces for entering an email address, capturing images of passports or ID cards, and confirming submitted data.
After verification, the SDK stores the verified credentials securely in the device's local database. This can later be used to fulfill presentation requests.
iOS¶
Self SDK support verify both passport and other document such as identity card and driving license.
To read data from an e-passport. You need to setup ability to read NFC chip from passport First, we need to add Near Field Communication Tag Reading
capability to the entitlement file
Second, we need to add NFCReaderUsageDescription
to application's Info.plist file
And a list of application identifiers that the app supports into the Info.plist file
Android¶
Below are code examples in a simple MainActivity on how to integrate the document verification flow in the app.
💻 Complete Working Examples¶
For complete, runnable implementations that you can test immediately, explore our official examples repository:
🚀 Self SDK Examples Repository¶
Quick Start:
Platform-Specific Examples: - Android: android/SelfExamples/verification/
- Complete document verification flow with UI components - iOS: ios/Example/
- Native iOS document verification with NFC passport reading - Cross-platform: Integration examples for hybrid mobile frameworks
Key Features Demonstrated: - NFC Passport Reading: iOS examples include complete NFC chip reading implementation - Document Capture UI: Pre-built components for capturing various document types - Credential Storage: Secure local storage patterns for verified documents - Multi-document Support: Examples for ID cards, driving licenses, and passports
By leveraging these Self SDK features, you can integrate comprehensive identity document verification into your mobile applications with minimal development effort.