Installation
This guide shows you how to add the Scandit Data Capture SDK to current existing project.
Prerequisites
- The latest stable version of Visual Studio.
- A .NET SDK.
- A .NET for iOS project with minimum iOS deployment target of 14.0 or higher.
- A valid Scandit Data Capture SDK license key. You can sign up for a free test account.
Android devices running the Scandit Data Capture SDK need to have a GPU or the performance will drastically decrease.
Internal Dependencies
Some of the Scandit Data Capture SDK modules depend on others to work:
Module | Dependencies | Optional Dependencies |
---|---|---|
ScanditCaptureCore | None | None |
ScanditBarcodeCapture | ScanditCaptureCore | None |
ScanditParser | None | None |
ScanditIdCapture | ScanditCaptureCore | ScanditIdCaptureBackend ScanditIdEuropeDrivingLicense ScanditIdAamvaBarcodeVerification ScanditIdVoidedDetection |
When using ID Capture, consult the ID Capture getting started guide to identify the optional dependencies required for your use case. The modules you need to include will vary based on the features you intend to use.
Please be aware that your license may only cover a subset of Barcode and/or ID Capture features. If you require additional features, contact us.
Get a License Key
If you have a paid subscription, please reach out to Scandit Support if you need a new license key.
Add the SDK
The Scandit Data Capture SDK is distributed as NuGet packages.
You will always need to add the Scandit.DataCapture.Core
package, which contains the core functionality used by the other data capture packages. When developing MAUI applications you will also need to add the Scandit.DataCapture.Core.Maui
package.
In addition, depending on the data capture task, you will need a reference to:
Functionality | Description | Required Module(s) |
---|---|---|
Barcode Capture | ScanditBarcodeCapture API if you want to use barcode-related functionality, such as barcode capture or MatrixScan. | com.scandit.datacapture:barcode |
Parser | ScanditParser API if you want to parse data strings, for instance, as found in barcodes, into a set of key-value mappings. | com.scandit.datacapture:parser |
ID Capture | ScanditIdCapture API if you want to scan personal identification documents, such as identity cards, passports or visas. | com.scandit.datacapture:id |
You can safely remove Scandit.DataCapture.Barcode
, Scandit.DataCapture.Parser
, or Scandit.DataCapture.IdCapture
dependencies if you are not going to use their features.
Additional Information
Camera Permissions
When using the Scandit Data Capture SDK you will want to set the camera as the frame source for various capture modes. On .NET for iOS, you have to set the “Privacy - Camera Usage Description” field in the Info.plist file.
When using the Scandit Data Capture SDK in MAUI application additionally you have to request camera permissions in your own application before starting scanning. To see how you can achieve this, take a look at our samples.
Third-party Licenses
The Scandit Data Capture SDK relies on several third-party, open-source software libraries. Your application must display the license information for these libraries in many cases.
The Scandit SDK provides a convenient API that you can use to fetch the corresponding text and attributions for all third-party software:
DataCaptureContext.openSourceSoftwareLicenseInfo()