Comment on page
Getting started
This page presents the first steps to using the Identity SDK for iOS.
When using our SDKs, please make sure that you agree with our ** Privacy Policy and our Terms and Conditions of Use.**
SDK | Framework |
Identity | pod 'Identity', '~> 1.1.2' |
SDK | Framework |
Identity | pod 'IdentityNoSentry', '~> 1.1.5' |
Deployment Info | Version |
Target | iOS 12.4 + |
Xcode | 14.2.0 + |
- 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 'Identity', '~> <version>'
Once you have added the frameworks, run the following command to actually download the dependencies:
pod install
Last modified 2mo ago