Migration Guide
Migration from 1.X.X to 2.0.0
- Update Android
minSdkVersionto 23 (<SupportedOSPlatformVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'android'">23.0</SupportedOSPlatformVersion>). - Replace
OnboardingConfigurationwith the appropriateOnboardingSessionConfigurationand/orOnboardingFlowConfiguration. - When calling
AddIdScanonOnboardingFlowConfigurationinstead of just one callbackIdScanCallback, there are now 3 separate callbacks with appropriate results:IdFrontScanCallbackreturningIdFrontScanResult,IdBackScanCallbackreturningIdBackScanResultandIdProcessCallbackreturningIdProcessResult. - When calling
AddFaceMatchonOnboardingFlowConfiguration, remove thefaceMatchParamsparameter. - When calling
StartOnboarding, replace theOnboardingConfigurationparameter with 2 parameterssessionConfigandflowConfig, which are instances ofOnboardingSessionConfigurationandOnboardingFlowConfiguration. SetOnboardingSessionandCreateNewOnboardingSessionmethods are replaced with theSetupOnboardingSessionmethod that accepts instances ofOnboardingSessionConfiguration.- Remove
interviewIdparameter fromStartOnboardingSectionand pass an instance ofOnboardingFlowConfiguration. - From
VerifyFace, removecustomerTokenparameter, and the result is nowVerifyFaceResulttype instead ofSelfieScanResult.
Updated 3 days ago
