Please add the Simpl Fingerprint Dependencies as per the designated platforms (Android, iOS) provided below.
Android :
Include the Simpl Fingerprinting SDK as a dependency.
SDK version: Refer to the release notes for the most recent SDK version here
.
Please ensure that INTERNET android permission is added to AndroidManifest.xml
Verify that you are loading the Simpl Fingerprinting SDK properly by logging Log.d("SimplFingerprint", SimplFingerprint.getInstance().toString()); in the Logcat console. You should receive an Object in return.
iOS :
Integrate the Simpl SDK by installing the CocoaPods dependency.
SDK version: Refer to the release notes for the most recent SDK version here
.
The above code installs the latest version of the pod available in the CocoaPods Specs repo (or your private repo, if that’s where it’s hosted).
If you already have a Podfile.lock, it will lock to the version recorded there until you run pod update SimplFingerPrint.
pod 'SimplFingerPrint', '<version>' : Installs the specific version you mention.
Example: pod 'SimplFingerPrint', '1.0.11'
This forces CocoaPods to always use that version, regardless of newer versions being available.
If the latest pod version is 1.4.0:
pod 'SimplFingerPrint' → Will install 1.4.0 (unless Podfile.lock has an older version pinned).
pod 'SimplFingerPrint', '1.2.3' → Will always install 1.2.3.