Getting started
This page introduces the first steps to using our iOS SDKs.
When using our SDKs, please make sure that you agree with our Privacy Policy and our Terms and Conditions of Use.
SDK | Framework |
pod 'DocumentDetector', '~> 7.12.0' | |
pod 'PassiveFaceLiveness', '~> 5.25.0' | |
pod 'FaceAuthenticator', '~> 5.11.0' | |
pod 'DeviceAnalyser', '~> 1.0.0' |
SDK | Framework |
pod 'DocumentDetector', '7.12.0-rc02' | |
pod 'PassiveFaceLiveness', '6.0.0-rc02' |
Deployment Info | Version |
Target | iOS 11.0 + |
Xcode | 13.4.1 + |
- Internet connection
We use
pod
to install the frameworks. To use it, run the following command in the root folder of your project to create the framework:pod init
The next step is to install the desired frameworks. To do this, add our source to the project's
podfile
:source 'https://github.com/combateafraude/iOS.git'
source 'https://cdn.cocoapods.org/' # or 'https://github.com/CocoaPods/Specs' if the CDN is down
After that, add the desired frameworks in the following format:
pod '<framework_name>', '~> <version>'
source 'https://github.com/combateafraude/iOS.git'
target 'TestApp' do
use_frameworks!
pod '<Framework Name>', '~> <version>'
end
Once you have added the frameworks, run the following command to actually download the dependencies:
pod install
To enable text and voice in Portuguese, add in Project > Info > Localizations the language Portuguese (Brazil).
Last modified 16d ago