Skip to main content

Installation

Importing the Document SDK into your project

The SDK package contains a folder called SDK and a subfolder called Document.xcframework, which includes all of the supported architectures as xcframeworks.

  1. Select the appropriate SDK and copy it into your project directory.
  2. Import Document.xcframework into your Xcode project.
  3. Make sure that it is listed as Embed & Sign under your target settings:

Importing additional dependencies

The Document SDK requires an additional dependency to perform certain operations (IDSCamera.xcframework), this is responsible for camera liveness logic. This dependency is provided separately in the IDSCamera Dependencies package.

  1. Download the required IDSCamera dependency package.
  2. Drag the included .xcframework dependency into the root level of your Xcode project.
    1. Select Copy files to destination.
    2. Ensure your main project is targeted.
  3. Make sure the dependency is listed as Embed & Sign under your target settings.

Other dependencies

The document SDK also requires the following third-party dependencies:

  • Lottie (for animations): Can be added via Swift Package Manager or Carthage as an xcframework. We recommend using version 4.5.1 as we have tested this version.

Adding the module

Within your app add the following:

import Document

Updating

To update, you should download the new package and reimport it into your project.

Note: There may be breaking changes or feature updates, you should still review the migration details and the integration details for the version you are updating to and may need to make code changes. This section simply talks about how to update the installed version.

Troubleshooting

The above is all that is needed to install the SDK in most cases. The following discusses some less likely situations:

SPM (Swift Package Manager) support

We are aiming to distribute through SPM at some point in the future, but do not have a planned date yet.