Get Started
Last updated
Last updated
Sybrin Biometrics makes use of cocoapods dependency manager for distributing our SDK. If you are not familiar with cocoapods, or require assistance in using cocoapods, visit https://guides.cocoapods.org/using/getting-started.html
Check out the example project at https://github.com/sybrin-innovations/Sybrin.SDK.Samples/tree/main/ios/biometrics
If you don’t have an existing Podfile, run the following command to create one:
Add the following lines to your Podfile:
Finally, run the following command:
Remember to use the .xcworkspace
from now on, to open your project in XCode!
If you would like to update Sybrin Biometrics, in the future, use the following terminal command:
Visit Release Notes to see the latest version!
You can now open your project using the .xcworkspace
as indicated by cocoapods.
Sybrin Biometrics requires bitcode to be disabled. This can be configured in the Build Settings
:
Sybrin Biometrics requires the camera permission, to capture biometric information. Add the Privacy - Camera Usage Description
property to your Info.plist
file
Before using any of the Biometrics SDK features, you will need to initialize an instance of the SybrinBiometricsConfiguration
class and set the SybrinBiometrics.shared.configuration
property.
Check out Biometrics Configuration for all the available customisation options!
Setting the SybrinBiometrics.shared.configuration
property should only happen once. Trying to set the property after a configuration has already been set will fail.
You can still make changes to the configuration object after it was set, but you can't set a new configuration.
You are now ready and setup to use Sybrin Biometrics! Check out all the Biometrics Features!