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 one internal dependency to perform certain operations (IDSCamera.xcframework), which is responsible for camera logic. The Document package contains a folder called Dependencies.

  1. Copy the dependency into your project folder.
  2. Import it into your Xcode project.
  3. Make sure that it 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.