Links

Getting started

This page presents the first steps to using the Identity SDK for iOS.

Terms & Policies

When using our SDKs, please make sure that you agree with our **** Privacy Policy and our Terms and Conditions of Use.

Current versions

SDK
Framework
Identity
pod 'Identity', '~> 1.0.0'

Pre-requirements

Deployment Info
Version
Target
iOS 12.4 +
Xcode
14.2.0 +
  • Internet connection
  • A valid caf Mobile token. To get one, please contact us.

Importing the SDK

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 'Identity', '~> <version>'
Once you have added the frameworks, run the following command to actually download the dependencies:
pod install
Last modified 2mo ago