Skip to content

Upgrading to v11.x

richardsimongreen edited this page Nov 5, 2025 · 2 revisions

There have been a number of breaking changes in this 11.0.0 release. Please read through this section to understand those changes and refer to the revised README.md.

Changes to Options

Changes to certificates.

If you want pinning to be performed, a certificate must be provided to the certificates option.

If you wish to use this option, or are reverse proxying, please reach out to your Solution Architect.

Changes to camera

The camera option is removed. All claims will always use the FRONT camera.

Changes to Failures

Multiple new reasons have been added that can be returned by the SDK. The structure of the FailureResult class has been changed to now return more than one reason.

    data class FailureResult(
        val reasons: List<FailureReason>,
        val frame: Bitmap?,
    )

Changes to Errors

'FaceDetectorException' is redundant and has been removed from the list of possible Errors

Changes to Dependencies

Minimum Kotlin is now 1.8.10

Clone this wiki locally