Skip to main content

Preparation

Overview

BioMatch SDK provides facial recognition and PIN verification features for secure user authentication.
Before integrating the SDK into your project, make sure you have completed the following preparation steps.
These steps ensure the SDK functions properly by allowing camera access, internet connectivity, and proper code obfuscation handling.

Requirements

The minimum requirements for the SDK are:

  • iOS 13.0 and higher
  • Xcode 13 and higher

Permissions

For Location

	<key>NSLocationWhenInUseUsageDescription</key>
<string>This application requires access to your location to upload the document.</string>
<key>NSLocationUsageDescription</key>
<string>This application requires access to your location to upload the document.</string>
<key>NSLocationAlwaysUsageDescription</key>
<string>This application requires access to your location to upload the document.</string>
<key>NSLocationAlwaysAndWhenInUseUsageDescription</key>
<string>This application requires access to your location to upload the document.</string>

For Camera

	<key>NSCameraUsageDescription</key>
<string>This application requires access to your camera for scanning and uploading the document.</string>

Via Cocoapods

Adapt you Podfile and add the AmaniBioMatchSDK
Add lines to first line of pod file

source "https://github.com/AmaniTechnologiesLtd/Mobile_SDK_Repo"
source "https://github.com/CocoaPods/Specs"
pod 'AmaniBioMatch', '1.0.0'

Then you should call the pod install on terminal.