DOT Android Document library
v9.2.0
Introduction
DOT Android Document provides components for document capture and related functionalities which are easy to integrate into an Android application.
Requirements
DOT Android Document has the following requirements:
Minimum Android API level 24
Minimum Kotlin Gradle plugin version 1.7.0 (if used)
Distribution
Modularization
DOT Android Document is divided into core module and optional feature modules. This enables you to reduce the size of the library and include only modules that are actually used in your use case.
DOT Android Document is divided into following modules:
dot-document(Required) - provides API for all the features and functionalities.dot-document-barcode(Optional) - enables the barcode feature.
Each feature module can have other modules as their dependency and cannot be used without it, see the table below.
Module | Dependency |
|
|
Maven Repository
DOT Android Document is distributed as a set of Android libraries (.aar packages) stored in the Innovatrics maven repository. Each library represents a single module.
In order to integrate DOT Android Document into your project, the first step is to include the Innovatrics maven repository to your settings.gradle.kts file.
dependencyResolutionManagement {
repositories {
maven {
url = URI("https://maven.innovatrics.com/releases")
}
}
}Then, specify the dependencies of DOT Android Document libraries in the build.gradle.kts file. Dependencies of these libraries will be downloaded alongside them.
dependencies {
implementation("com.innovatrics.dot:dot-document-barcode:$dotVersion")
}In order to optimize application size, we also recommend adding the following excludes to your application’s build.gradle.kts file.
android {
packaging {
resources {
excludes += listOf(
"**/jnidispatch.dll",
"**/libjnidispatch.a",
"**/libjnidispatch.jnilib",
"**/*.proto",
)
}
}
}Supported Architectures
DOT Android Document provides binaries for these architectures:
armeabi-v7aarm64-v8ax86x86_64
If your target application format is APK and not Android App Bundle, and the APK splits are not specified, the generated APK file will contain binaries for all available architectures. Therefore we recommend to use APK splits. For example, to generate arm64-v8a APK, add the following section into your module build.gradle.kts:
splits {
abi {
isEnable = true
reset()
include("arm64-v8a")
isUniversalApk = false
}
}If you do not specify this section, the resulting application can become too large in size.
Licensing
In order to use DOT SDK in other apps, it must be licensed. The license can be compiled into the application as it is bound to the application ID specified in build.gradle.kts:
android {
defaultConfig {
applicationId = "com.innovatrics.dot.samples"
}
}The application ID can be also retrieved in runtime by calling DotSdk.getApplicationId().
In order to obtain the license, please contact your Innovatrics’ representative specifying the application ID. If the application uses build flavors with different application IDs, each flavor must contain a separate license. Put the license file into the raw resource folder.
Permissions
DOT Android Document declares the following permission in AndroidManifest.xml:
<uses-permission android:name="android.permission.CAMERA" />Basic Setup
Initialization
Before using any of the components, you need to initialize DOT SDK with the license, DotDocumentLibraryConfiguration object and list of feature modules you want to use. Each feature module can be activated by a *ModuleConfiguration class. See the table below.
Feature module | Class |
|
|
InitializeDotSdkUseCase class in the Samples project shows how to initialize DOT SDK with DotDocumentLibraryConfiguration. DotSdk.initialize() method should be called on background thread.
Keep in mind that if you try to use any component without initialization or any feature which was not added during initialization, it will throw an exception. Also be aware that while the app is in background, the system may kill the process to free resources. In such a case, you need to reinitialize the SDK when the app is brought back to the foreground. We recommend to check the SDK initialization status (using DotSdk.isInitialized() method) in your Fragment’s onViewCreated(). This technique is implemented in the Samples project.
Deinitialization
When a process (e.g. onboarding) using the DOT Android Document has been completed, it is usually a good practice to free the resources used by it.
You can perform this by calling DotSdk.deinitialize(). If you want to use the DOT Android Document components again after that point, you need to call DotSdk.initialize() again. This shouldn’t be performed within the lifecycle of individual Android components.
Components
Overview
DOT Android Document provides both non-UI and UI components. Non-UI components are aimed to be used by developers who want to build their own UI using the DOT Android Document functionality. UI components are build on top of non-UI components. These are available as abstract fragments and can be extended and then embedded into the application’s existing activity providing more control.
List of Non-UI Components
- DOCUMENT DETECTOR
A component for performing document detection on an image.
- IMAGE PERSPECTIVE WARPER
A component for perspective warping an image according detected document position.
- DOCUMENT AUTO CAPTURE CONTROLLER
A component for capturing good quality images suitable for optical character recognition.
- MACHINE READABLE ZONE READER
A component for reading Machine Readable Zone (MRZ).
List of UI Components
- UI DOCUMENT AUTO CAPTURE
A visual component for capturing good quality images suitable for optical character recognition.
Non-UI Components
Document Detector
The DocumentDetector interface provides a document detection functionality.
Create a DocumentDetector:
val documentDetector = DocumentDetectorFactory.create()To perform detection, call the following method on the background thread:
val document = documentDetector.detect(image)Image Perspective Warper
The ImagePerspectiveWarper interface provides perspective warping functionality.
Create ImagePerspectiveWarper:
val imagePerspectiveWarper = ImagePerspectiveWarperFactory.create()To perform perspective warping, call the following method on the background thread:
val warpedImage = imagePerspectiveWarper.warp(image, detectionPosition, targetImageSize)Document Auto Capture Controller
The DocumentAutoCaptureController interface provides a stateful document auto capture functionality.
Create DocumentAutoCaptureController:
val configuration = DocumentAutoCaptureController.Configuration(
context = context,
validators = validators,
//…
)
val documentAutoCaptureController = DocumentAutoCaptureControllerFactory.create(configuration)You can use detectionArea to specify the region in the input image which will be used for document detection. For example, if you want to ignore top 30% and bottom 30% of the input image, you can do it as follows:
val configuration = DocumentAutoCaptureController.Configuration(
context = context,
validators = validators,
detectionArea = RectangleDouble(0.0, 0.3, 1.0, 0.7),
//…
)If detectionArea is not specified, the source input image is used for document detection.
To capture a good quality document image, repeatedly call the process() method using camera images:
val processingResult = documentAutoCaptureController.process(sample)The controller evaluates the image requirements for each sample (frame). Once there are minValidSamplesInRowToStartCandidateSelection valid samples in a row, candidate selection is started with duration of candidateSelectionDurationMillis milliseconds. After the candidate selection is finished, the best document image candidate is returned and the document auto capture process is over.
Once the process is complete, it’s recommended to release the resources held by the DocumentAutoCaptureController by calling close() method.
Machine Readable Zone Reader
The MrzReader interface provides a Machine Readable Zone (MRZ) reading functionality.
Create MrzReader:
val configuration = MrzReader.Configuration(context)
val mrzReader = MrzReaderFactory.create(configuration)To read a MRZ, call the following method on the background thread:
val result = mrzReader.read(image, document)Or, alternatively if you know the travel document type call this method in order to increase precision of reading:
val result = mrzReader.read(image, document, travelDocumentType)Argument document is a product of either Document Detector component, Document Auto Capture Controller component or UI Document Auto Capture component.
The result of successful MRZ reading contains travel document type and machine readable zone. If MRZ reading was not successful, the result will contain an exception and travelDocumentType and/or machineReadableZone may be null.
Once the process is complete, it’s recommended to release the resources held by the MrzReader by calling close() method.
UI Components
Fragment Configuration
Components containing UI are embedded into the application as fragments from Android Support Library. All fragments are abstract. They must be subclassed and override their abstract methods.
Fragments requiring runtime interaction provide public methods, for example start().
class DemoDocumentAutoCaptureFragment : DocumentAutoCaptureFragment() {
override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
start()
}
//…
}The DocumentAutoCaptureFragment requires a configuration. To provide configuration data, you should override the provideConfiguration() method in your subclass implementation. This method should return an instance of the DocumentAutoCaptureFragment.Configuration data class with the desired parameters.
class DemoDocumentAutoCaptureFragment : DocumentAutoCaptureFragment() {
override fun provideConfiguration() = Configuration(
placeholder = Placeholder.Visible(
type = configuration.placeholderType,
),
isDetectionLayerVisible = configuration.isDetectionLayerVisible,
//…
)
//…
}Camera permission
A fragment (UI component) will check the camera permission (Manifest.permission.CAMERA) right before the camera is started. If the camera permission is granted the fragment will start the camera. If the camera permission is not granted the fragment will use Android API - ActivityResultContracts.RequestPermission to request the camera permission. Android OS will present the system dialog to the user of the app. If the user explicitly denies the permission at this point, onNoCameraPermission() callback is called. Implement this callback in order to navigate the user further in your app workflow.
Orientation Change
In order to handle the orientation change in multi-window mode correctly, configure the activity in your AndroidManifest.xml file as follows:
<activity
android:name=".MyActivity"
android:configChanges="screenSize|smallestScreenSize|screenLayout|orientation" />Video Recording for Identity Proofing
UI components support video recording. You can enable this feature in the component’s configuration using the isVideoCaptureEnabled parameter. The duration of the captured video is limited to a maximum of 8 seconds, corresponding to the end of the processing session. The captured video is bundled into the component’s result binary content and can be retrieved via the Digital Identity Service (DIS) for the purposes of Identity proofing.
UI Document Auto Capture
The fragment with instructions for obtaining quality document images suitable for further processing.
In order to configure the behaviour of DocumentAutoCaptureFragment, use DocumentAutoCaptureFragment.Configuration (see Fragment Configuration).
To use the fragment, create a subclass of DocumentAutoCaptureFragment and override appropriate callbacks.
Start the document auto capture process:
Check whether DOT Android Document is initialized. This step is important, because Android OS can terminate an application running in background in order to free resources and then it creates an instance of the top activity in the activity stack. At this point the DOT Android Document is no longer initialized and the document auto capture process must not be started.
If DOT Android Document is initialized, you can call the
start()method immediately. If not, you need to initialize DOT Android Document and then callstart().
When the document auto capture process finishes successfully, the result will be returned via the onFinished() callback.
In case you want to force the capture event, call the requestCapture() method. The most recent image will be returned via the onFinished() callback asynchronously.
Call start() method again in case you need to start over the document auto capture process (e.g. you want to capture both sides of the document, one after another). You can also call start() method to stop and start over ongoing process as well.
In case you want to stop the document auto capture process prematurely, call the stop() method.
Quality Attributes of the Output Image
You may adjust quality requirements for the output image. To perform this, you can use pre-defined instances - QualityAttributeThresholds - from QualityAttributeThresholds.Presets with recommended thresholds and pass it to BaseDocumentAutoCaptureFragment.Configuration by setting the qualityAttributeThresholds. You can also create your own instance of QualityAttributeThresholds from scratch or based on pre-defined instances according to your needs.
Possible ways how to create QualityAttributeThresholds:
// The standard preset
val standard = QualityAttributeThresholds.Presets.standard
// Modified thresholds based on the standard preset
val modified = standard.copy(
minConfidence = minConfidence,
minSharpness = null,
)
// Custom thresholds
val custom = QualityAttributeThresholds(
minConfidence = minConfidence,
minSharpness = null,
)Available presets (pre-defined instances with thresholds) in QualityAttributeThresholds.Presets:
standard- The resulting image suitable for evaluation on Digital Identity Service. See the thresholds.
Customization of UI components
Strings
You can override the string resources in your application and provide alternative strings for supported languages using the standard Android localization mechanism.
<string name="dot_document_document_auto_capture_instruction_barcode_not_present">Scan document with barcode</string>
<string name="dot_document_document_auto_capture_instruction_barcode_outside_of_document">Scan document with barcode</string>
<string name="dot_document_document_auto_capture_instruction_brightness_too_high">Less light needed</string>
<string name="dot_document_document_auto_capture_instruction_brightness_too_high_escalated">Move document to darker area</string>
<string name="dot_document_document_auto_capture_instruction_brightness_too_low">More light needed</string>
<string name="dot_document_document_auto_capture_instruction_brightness_too_low_escalated">Move document to brighter area</string>
<string name="dot_document_document_auto_capture_instruction_candidate_selection">Hold still…</string>
<string name="dot_document_document_auto_capture_instruction_document_does_not_fit_placeholder">Center document</string>
<string name="dot_document_document_auto_capture_instruction_document_not_detected">Scan document</string>
<string name="dot_document_document_auto_capture_instruction_document_out_of_bounds">Center document</string>
<string name="dot_document_document_auto_capture_instruction_hotspots_score_too_high">Avoid reflections</string>
<string name="dot_document_document_auto_capture_instruction_mrz_not_present">Scan valid machine readable document</string>
<string name="dot_document_document_auto_capture_instruction_mrz_not_valid">Scan valid machine readable document</string>
<string name="dot_document_document_auto_capture_instruction_sharpness_too_low">More light needed</string>
<string name="dot_document_document_auto_capture_instruction_sharpness_too_low_escalated">Move document to brighter area</string>
<string name="dot_document_document_auto_capture_instruction_size_too_small">Move closer</string>
<string name="dot_document_document_auto_capture_instruction_size_too_small_escalated">Move document closer</string>Colors
You may customize the colors used by DOT Android Document in your application. To use custom colors, override the specific color.
<color name="dot_detection_layer">#ffffffff</color>
<color name="dot_instruction_background">#fff8fbfb</color>
<color name="dot_instruction_candidate_selection_background">#ff00bfb2</color>
<color name="dot_instruction_candidate_selection_text">#ff131313</color>
<color name="dot_instruction_text">#ff131313</color>
<color name="dot_placeholder">#ffffffff</color>
<color name="dot_placeholder_candidate_selection">#ff00bfb2</color>
<color name="dot_placeholder_overlay">#80131313</color>Styles
Text views and buttons can be styled by overriding the parent style in the application.
<style name="TextAppearance.Dot.Medium" parent="TextAppearance.AppCompat.Medium" />
<style name="TextAppearance.Dot.Medium.Instruction" />Common Classes
ImageSize
DTO which represents a size of an image. To create an instance:
val imageSize = ImageSize(width, height)Image
DTO which represents and an image. To create an instance:
val image = Image(format, size, bytes)To create an instance from Bitmap:
val image = ImageFactory.create(bitmap)DetectionPosition
DTO which represents a position of a detected document. To create an instance:
val detectionPosition = DetectionPosition(topLeft, topRight, bottomRight, bottomLeft)Security guidelines
Our video injection prevention feature relies heavily on following established security best practices as outlined in the Android Developer website’s Security guidelines. Specifically, the App Integrity and Networking sections provide crucial foundations for this functionality. The Play Integrity API ensures your app binary remains unaltered, preventing potential vulnerabilities that could be exploited for video injection. Networking Security guidelines help secure communication channels. These guidelines help prevent unauthorized modification of data streams. By adhering to these security principles, you create a robust environment where our video injection prevention features can function optimally, safeguarding you from tampered content.
OWASP Mobile Application Security
We also strongly recommend following the OWASP Mobile Application Security guidelines. The OWASP Mobile Application Security (MAS) flagship project provides a security standard for mobile apps (OWASP MASVS) and a comprehensive testing guide (OWASP MASTG) that covers the processes, techniques, and tools used during a mobile app security test, as well as an exhaustive set of test cases that enables testers to deliver consistent and complete results.
Appendix
Changelog
9.2.0 - 2026-02-27
Added
Validation of PDF417 barcodes.
Class
Barcode.Class
DetectionPosition.Class
BarcodeNotPresentValidator.Class
BarcodeOutsideOfDocumentValidator.Property
DocumentAutoCaptureFrameParameters.barcode.Enum
BarcodeValidation.Property
BaseDocumentAutoCaptureFragment.Configuration.barcodeValidation.String resource
dot_document_document_auto_capture_instruction_barcode_not_present.String resource
dot_document_document_auto_capture_instruction_barcode_outside_of_document.
Changed
Object
DotDocumentLibraryConfigurationto class.
9.0.2 - 2026-01-22
Changed
Minimum Kotlin Gradle plugin version to 1.7.0.
9.0.1 - 2026-01-08
Technical release. No changes.
9.0.0 - 2025-12-16
Added
Class
DotSdk.Configuration.Class
Libraries.Class
DotDocumentLibraryConfiguration.Class
CameraConfiguration.Class
AutoCaptureConfiguration.Class
CommonConfiguration.Class
com.innovatrics.dot.core.math.IntervalDouble.Class
com.innovatrics.dot.core.math.IntervalFloat.Class
com.innovatrics.dot.camera.image.ImageFactory.Class
Image.Enum
ImageFormat.Property
DocumentDetector.Document.quality.Class
DocumentQuality.Class
DocumentImageQuality.Sealed interface
Placeholder.Class
com.innovatrics.dot.document.detection.DetectionPosition.Class
BaseDocumentAutoCaptureFragment.Class
com.innovatrics.dot.document.autocapture.ui.DocumentAutoCaptureFragment.Class
com.innovatrics.dot.document.autocapture.ui.preview.Preview.Sealed interface
UiState.Class
QualityAttributeThresholds.Presets.
Changed
Method signature
BitmapFactory.create().Interface
DocumentAutoCaptureDetectionValidatortoDocumentAutoCaptureFrameParametersValidator.Property
DocumentAutoCaptureController.Configuration.detectionNormalizedRectangletoDocumentAutoCaptureController.Configuration.detectionArea.String resource key
dot_document_auto_capture_instruction_brightness_too_hightodot_document_document_auto_capture_instruction_brightness_too_high.String resource key
dot_document_auto_capture_instruction_brightness_too_high_escalatedtodot_document_document_auto_capture_instruction_brightness_too_high_escalated.String resource key
dot_document_auto_capture_instruction_brightness_too_lowtodot_document_document_auto_capture_instruction_brightness_too_low.String resource key
dot_document_auto_capture_instruction_brightness_too_low_escalatedtodot_document_document_auto_capture_instruction_brightness_too_low_escalated.String resource key
dot_document_auto_capture_instruction_candidate_selectiontodot_document_document_auto_capture_instruction_candidate_selection.String resource key
dot_document_auto_capture_instruction_document_does_not_fit_placeholdertodot_document_document_auto_capture_instruction_document_does_not_fit_placeholder.String resource key
dot_document_auto_capture_instruction_document_not_detectedtodot_document_document_auto_capture_instruction_document_not_detected.String resource key
dot_document_auto_capture_instruction_document_out_of_boundstodot_document_document_auto_capture_instruction_document_out_of_bounds.String resource key
dot_document_auto_capture_instruction_hotspots_score_too_hightodot_document_document_auto_capture_instruction_hotspots_score_too_high.String resource key
dot_document_auto_capture_instruction_mrz_not_presenttodot_document_document_auto_capture_instruction_mrz_not_present.String resource key
dot_document_auto_capture_instruction_mrz_not_validtodot_document_document_auto_capture_instruction_mrz_not_valid.String resource key
dot_document_auto_capture_instruction_sharpness_too_lowtodot_document_document_auto_capture_instruction_sharpness_too_low.String resource key
dot_document_auto_capture_instruction_sharpness_too_low_escalatedtodot_document_document_auto_capture_instruction_sharpness_too_low_escalated.String resource key
dot_document_auto_capture_instruction_size_too_smalltodot_document_document_auto_capture_instruction_size_too_small.String resource key
dot_document_auto_capture_instruction_size_too_small_escalatedtodot_document_document_auto_capture_instruction_size_too_small_escalated.Method signature
DocumentDetector.detect().Method signature
ImagePerspectiveWarper.warp().Method signature
MrzReader.read().Method signature
MrzTextRecognizer.recognize().Property
DocumentAutoCaptureController.Sample.bgraRawImagetoDocumentAutoCaptureController.Sample.image.Property
DocumentAutoCaptureDetection.bgraRawImagetoDocumentAutoCaptureDetection.image.Property
DocumentAutoCaptureResult.bgraRawImagetoDocumentAutoCaptureResult.image.Enum value
MrzValidation.VALIDATE_IF_PRESENTtoMrzValidation.REQUIRE_VALIDITY_IF_PRESENT.Enum value
MrzValidation.VALIDATE_ALWAYStoMrzValidation.REQUIRE_PRESENCE_AND_VALIDITY.
Removed
Class
DotSdkConfiguration. UseDotSdk.Configurationinstead.Class
Logger.Class
com.innovatrics.dot.core.validation.IntervalDouble. Usecom.innovatrics.dot.core.math.IntervalDoubleinstead.Class
com.innovatrics.dot.core.validation.IntervalFloat. Usecom.innovatrics.dot.core.math.IntervalFloatinstead.Enum
ImageRotation.Class
ImageParameters. UseDocumentImageQualityinstead.Class
Nv21Image.Class
BgraRawImageFactory. Usecom.innovatrics.dot.camera.image.ImageFactoryinstead.Class
BgraRawImage. UseImageinstead.Interface
ImageParametersAnalyzer.Class
ImageParametersAnalyzerFactory.Class
com.innovatrics.dot.document.autocapture.DocumentAutoCaptureFragment. Usecom.innovatrics.dot.document.autocapture.ui.DocumentAutoCaptureFragmentinstead.Class
DocumentAutoCaptureConfiguration. Usecom.innovatrics.dot.document.autocapture.ui.DocumentAutoCaptureFragment.Configurationinstead.Class
DocumentAutoCaptureConfiguration.Builder. Usecom.innovatrics.dot.document.autocapture.ui.DocumentAutoCaptureFragment.Configurationinstead.Method
DocumentAutoCaptureController.process(bgraRawImage: BgraRawImage, timestampMillis: Long). UseDocumentAutoCaptureController.process(sample: Sample)instead.Class
DocumentAutoCaptureControllerConfiguration. UseDocumentAutoCaptureController.Configurationinstead.Method
DocumentAutoCaptureControllerFactory.create(configuration: DocumentAutoCaptureControllerConfiguration). UseDocumentAutoCaptureControllerFactory.create(configuration: DocumentAutoCaptureController.Configuration)instead.Class
QualityAttributeThresholds.Builder. UseQualityAttributeThresholdsinstead.Class
MrzReaderConfiguration. UseMrzReader.Configurationinstead.Method
MrzReaderFactory.create(configuration: MrzReaderConfiguration). UseMrzReaderFactory.create(configuration: MrzReader.Configuration)instead.Property
DocumentDetector.Document.imageParameters. UseDocumentDetector.Document.quality.imageQualityinstead.Enum
PlaceholderType. UsePlaceholderinstead.Class
com.innovatrics.dot.document.autocapture.DetectionPosition. Usecom.innovatrics.dot.document.detection.DetectionPositioninstead.Class
com.innovatrics.dot.document.autocapture.Preview. Usecom.innovatrics.dot.document.autocapture.ui.preview.Previewinstead.Class
QualityAttributeThresholdPresets. UseQualityAttributeThresholds.Presetsinstead.
8.17.0 - 2025-12-05
Technical release. No changes.
8.16.4 - 2025-11-10
Technical release. No changes.
8.16.3 - 2025-11-05
Technical release. No changes.
8.16.2 - 2025-10-24
Technical release. No changes.
8.16.1 - 2025-10-17
Fixed
Stability issue that occurred when the fragment was destroyed before its view was created.
8.16.0 - 2025-10-16
Fixed
Improved stability of camera initialization by handling potential exceptions.
8.15.1 - 2025-09-23
Fixed
Document Auto Capture component: Stability issue that occurred when a user did not grant camera permission and the fragment was destroyed.
8.15.0 - 2025-08-25
Added
Transaction counting is disabled by default, it can be enabled in your license.
Property
DotSdkConfiguration.transactionCountingToken. If transaction counting is enabled in your license, you must provide a valid transaction counting token.Analytics reporting is enabled by default, it can be disabled in your license.
Changed
Minimum Android API level to 24.
Update SAM to 1.50.5 - support 16 KB page size.
8.14.2 - 2025-08-15
Technical release. No changes.
8.14.1 - 2025-07-29
Changed
Update SAM to 1.50.0 - minor improvements.
Fixed
Conflict with different versions of
libc++_sharedlibrary.
8.14.0 - 2025-07-07
Changed
Update SAM to 1.49.1 - minor improvements.
8.13.0 - 2025-06-19
Added
Property
DocumentAutoCaptureFragment.Configuration.minValidFramesInRowToStartCandidateSelection.Property
DocumentAutoCaptureFragment.Configuration.candidateSelectionDurationMillis.Verification of
DocumentAutoCaptureController.Configuration.minValidFramesInRowToStartCandidateSelectionvalue.Verification of
DocumentAutoCaptureController.Configuration.candidateSelectionDurationMillisvalue.
Changed
Default value of
DocumentAutoCaptureController.Configuration.candidateSelectionDurationMillisto2_000.
Fixed
Stability issue that occurred when the instruction style was customized.
8.12.1 - 2025-06-04
Technical release. No changes.
8.12.0 - 2025-06-02
Changed
Deprecated class
Nv21Image.Deprecated method
BgraRawImageFactory.create(nv21Image).
8.11.1 - 2025-05-21
Technical release. No changes.
8.11.0 - 2025-05-06
Changed
DocumentAutoCaptureControllerextendsjava.lang.AutoCloseable.MrzReaderextendsjava.lang.AutoCloseable.Enhanced license verification.
Reduced delay during the capture finalization.
Added
Property
DocumentAutoCaptureFragment.Configuration.isCameraPreviewVisible.
Fixed
Behavior of method
DocumentAutoCaptureConfiguration.Builder.mrzReadingEnabled()when disabling MRZ reading (settingmrzReadingEnabledtofalse).Stability issue affecting Android 5 and Android 6 devices.
8.10.0 - 2025-04-03
Technical release. No changes.
8.9.0 - 2025-04-01
Changed
Update SAM to 1.44.6 - minor improvements.
8.8.0 - 2025-03-26
Added
Class
com.innovatrics.dot.camera.image.BgraRawImageFactory.After some delay, escalated instructions are used instead of regular instructions.
String resource
dot_document_auto_capture_instruction_brightness_too_low_escalated.String resource
dot_document_auto_capture_instruction_brightness_too_high_escalated.String resource
dot_document_auto_capture_instruction_sharpness_too_low_escalated.String resource
dot_document_auto_capture_instruction_size_too_small_escalated.Video Capture feature in UI components.
Property
DocumentAutoCaptureFragment.Configuration.isVideoCaptureEnabled.
Changed
Deprecated method
com.innovatrics.dot.document.image.BgraRawImageFactory.create(yuv420Image). Usecom.innovatrics.dot.camera.image.BgraRawImageFactory.create(yuv420Image)instead.
8.7.2 - 2025-03-06
Fixed
Freezing issue in the auto capture component during the candidate selection phase.
8.7.1 - 2025-03-06
Fixed
Class
Logger.
8.7.0 - 2025-02-06
Changed
Target Android API level to 35.
8.6.1 - 2025-01-14
Fixed
Issue where parsed values were being incorrectly truncated at the beginning.
8.6.0 - 2025-01-09
Technical release. No changes.
8.5.2 - 2024-10-30
Fixed
MRZ parsing issue.
8.5.1 - 2024-10-28
Fixed
Stability issue in UI components.
8.5.0 - 2024-10-24
Added
Property
DocumentAutoCaptureFrameParameters.detectionAreaImageSize.
Fixed
Detection normalized rectangle was not calculated correctly in specific scenarios within the Document Auto Capture UI component.
8.4.0 - 2024-09-11
Technical release. No changes.
8.3.3 - 2024-09-05
Technical release. No changes.
8.3.2 - 2024-09-05
Technical release. No changes.
8.3.1 - 2024-08-16
Fixed
Stability issue in UI components.
8.3.0 - 2024-08-08
Technical release. No changes.
8.1.0 - 2024-07-08
Changed
Document detection is improved (UI Document Auto Capture, Document Auto Capture Controller, Document Detector).
Sharpness calculation is improved (UI Document Auto Capture, Document Auto Capture Controller, Image Parameters Analyzer).
8.0.0 - 2024-06-27
Added
Class
CheckDigit.
Changed
Class
ElementWithChecksumtoElementWithCheckDigit.Class
DateElementWithChecksumtoDateElementWithCheckDigit.Property
ElementWithChecksum.validChecksumtoElementWithCheckDigit.checkDigit.Property
DateElementWithChecksum.validChecksumtoDateElementWithCheckDigit.checkDigit.Property
Td1MachineReadableZone.validChecksumtoTd1MachineReadableZone.compositeCheckDigit.Property
Td2MachineReadableZone.validChecksumtoTd2MachineReadableZone.compositeCheckDigit.Property
Td3MachineReadableZone.validChecksumtoTd3MachineReadableZone.compositeCheckDigit.Property
NameElement.primaryElementtoNameElement.primaryIdentifier.Property
NameElement.secondaryElementtoNameElement.secondaryIdentifier.Method signature
DocumentDetector.detect().Class
DocumentDetector.ResulttoDocumentDetector.Document.Property
DocumentDetector.Result.cornerstoDocumentDetector.Document.position.Class
CornerstoDetectionPosition.Property
DocumentAutoCaptureDetection.documentDetectorResulttoDocumentAutoCaptureDetection.document.Property
DocumentAutoCaptureDetection.imageParameterstoDocumentAutoCaptureDetection.document.imageParameters.Property
DocumentAutoCaptureResult.documentDetectorResulttoDocumentAutoCaptureResult.document.Property
DocumentAutoCaptureResult.imageParameterstoDocumentAutoCaptureResult.document.imageParameters.Property
DocumentAutoCaptureFrameParameters.documentDetectorResulttoDocumentAutoCaptureFrameParameters.document.Property
DocumentAutoCaptureFrameParameters.imageParameterstoDocumentAutoCaptureFrameParameters.document.imageParameters.Property
DocumentAutoCaptureFragment.Configuration.torchEnabledtoDocumentAutoCaptureFragment.Configuration.isTorchEnabled.Class
MachineReadableZoneand containing data classes. Mainly only package is changed of those classes.Method signature
ImagePerspectiveWarper.warp().Method signature
MrzReader.read().Layout resource
fragment_document_auto_capture.xmltodot_document_fragment_document_auto_capture.xml.
Removed
Callback
DocumentAutoCaptureFragment.onCandidateSelectionStarted().Property
DocumentAutoCaptureController.Configuration.imageParametersNormalizedRectangle. This property has no use anymore since the image parameters are calculated from the detection area.
7.5.8 - 2024-06-19
Fixed
Minor UI issue with updating the background color of the instruction.
Stability issue in UI components.
7.5.7 - 2024-06-04
Technical release. No changes.
7.5.6 - 2024-06-04
Technical release. No changes.
7.5.5 - 2024-05-30
Technical release. No changes.
7.5.4 - 2024-05-14
Added
Security guidelines section to the integration manual.
7.5.3 - 2024-04-26
Technical release. No changes.
7.5.2 - 2024-04-25
Removed
Permission
android.permission.INTERNETfrom Android manifest.
7.5.1 - 2024-04-15
Added
Section about optimization of application size to the integration manual.
Fixed
Rare UI issue in detection layer in
FILLscale type on some devices.
7.5.0 - 2024-04-03
Added
Constructor of
QualityAttributeThresholds.Method
DocumentAutoCaptureFragment.provideConfiguration().Class
DocumentAutoCaptureFragment.Configuration.Class
DocumentAutoCaptureController.Configuration.Class
MrzReader.Configuration.Property
QualityAttributeThresholdPresets.standard(originalQualityAttributeThresholdPresets.standardproperty was renamed toQualityAttributeThresholdPresets.standardBuilder).Callback
onStoppedas an argument to methodDocumentAutoCaptureFragment.stopAsync().
Changed
Property
QualityAttributeThresholdPresets.standardtoQualityAttributeThresholdPresets.standardBuilder.Deprecated
QualityAttributeThresholds.Builder, useQualityAttributeThresholdsconstructor instead.Deprecated
QualityAttributeThresholdPresets.standardBuilder, useQualityAttributeThresholdPresets.standard.Deprecated
DocumentAutoCaptureControllerConfiguration, useDocumentAutoCaptureController.Configurationclass instead.Deprecated
DocumentAutoCaptureControllerConfiguration.Builder, useDocumentAutoCaptureController.Configurationclass instead.Deprecated
DocumentAutoCaptureControllerFactory.create(DocumentAutoCaptureControllerConfiguration), useDocumentAutoCaptureControllerFactory.create(DocumentAutoCaptureController.Configuration)instead.Deprecated
DocumentAutoCaptureConfiguration, useDocumentAutoCaptureFragment.Configurationinstead.Deprecated
DocumentAutoCaptureConfiguration.Builder, useDocumentAutoCaptureFragment.Configurationinstead.Deprecated
DocumentAutoCaptureFragment.CONFIGURATION, overrideDocumentAutoCaptureFragment.provideConfiguration()method to provide configuration instead.Deprecated
MrzReaderConfiguration.Builder, useMrzReader.Configurationinstead.Deprecated
MrzReaderConfiguration, useMrzReader.Configurationinstead.Deprecated
MrzReaderFactory.create(MrzReaderConfiguration), useMrzReaderFactory.create(MrzReader.Configuration)instead.Enum
DocumentAutoCaptureConfiguration.PlaceholderTypetoPlaceholderType.
Removed
Method
DocumentAutoCaptureFragment.onStopped(). UseDocumentAutoCaptureFragment.stopAsync()method argumentonStoppedinstead.
7.4.2 - 2024-04-02
Fixed
Proguard rules.
7.4.0 - 2024-03-18
Added
Enum
DocumentAutoCaptureConfiguration.PlaceholderTypeMethod
DocumentAutoCaptureConfiguration.Builder.placeholderType().
7.3.0 - 2024-02-23
Added
Permission
android.permission.INTERNETin Android manifest.
7.2.2 - 2024-02-07
Technical release. No changes.
7.2.1 - 2024-02-05
Added
Property
REQUIRE_SECURE_ENVwith value1under the<application>in Android manifest.
7.2.0 - 2023-12-28
Changed
Camera preview and image analysis resolution selection strategy in UI components for
FILLscale type.
7.1.0 - 2023-12-14
Added
Property
DocumentAutoCaptureDetection.imageParameters.Property
DocumentAutoCaptureResult.imageParameters.
7.0.2 - 2023-12-05
Technical release. No changes.
7.0.1 - 2023-11-21
Technical release. No changes.
7.0.0 - 2023-11-02
Added
Class
DotSdk.Class
DotSdkConfiguration.Interface
DotLibrary.License file is required. To obtain one, please contact
support@innovatrics.com.
Changed
Class
DotDocumentLibraryreworked.Machine Readable Zone reading accuracy is improved.
6.5.2 - 2023-10-20
Fixed
API availability issue.
6.5.1 - 2023-10-19
Fixed
Stability issue.
MRZ parsing issue.
6.5.0 - 2023-10-04
Added
Method
DocumentAutoCaptureConfiguration.Builder.mrzValidation().Enum
MrzValidation.String resource
dot_document_auto_capture_instruction_mrz_not_present.Class
MrzNotPresentValidator.Class
MrzRecognitionResult.Property
MrzReader.Result.rawLines.Property
DocumentAutoCaptureFrameParameters.mrzRecognitionResult.
Changed
Property
DocumentAutoCaptureFrameParameters.machineReadableZonetoDocumentAutoCaptureFrameParameters.mrzRecognitionResult.Performance of document detection is significantly improved.
Accuracy of document detection is improved.
Deprecated
Method
DocumentAutoCaptureConfiguration.Builder.mrzReadingEnabled().
Removed
Property
DocumentAutoCaptureControllerConfiguration.isMrzReadingEnabled. Is determined by the validators whether the MRZ should be read.
6.4.0 - 2023-09-20
Changed
Signature of
DocumentAutoCaptureController.process()method.
6.3.1 - 2023-08-21
Fixed
Stability issue.
6.3.0 - 2023-08-17
Fixed
UI state after configuration change.
Preview and image resolution in UI components on some devices.
6.2.1 - 2023-07-27
Technical release. No changes.
6.2.0 - 2023-07-26
Added
Method
DocumentAutoCaptureConfiguration.Builder.sessionToken().Method
DocumentAutoCaptureControllerConfiguration.Builder.sessionToken().
6.1.0 - 2023-07-07
Added
Method
DocumentAutoCaptureConfiguration.Builder.torchEnabled().
Fixed
Duplicate classes from
com.google.protobufpackage.
6.0.0 - 2023-06-14
Added
Method
DocumentAutoCaptureConfiguration.qualityAttributeThresholds().Object
QualityAttributeThresholdPresets.Property
DocumentAutoCaptureResult.content.
Changed
All methods in
QualityAttributeThresholds.Builder()accept nullable arguments.
Removed
Method
DocumentAutoCaptureConfiguration.startQualityAttributeThresholds(). UseDocumentAutoCaptureConfiguration.qualityAttributeThresholds()instead.
5.5.1 - 2023-06-06
Fixed
UI state after components are finished.
5.5.0 - 2023-04-26
Technical release. No changes.
5.4.2 - 2023-04-04
Fixed
Stability issue.
5.4.1 - 2023-03-28
Technical release. No changes.
5.4.0 - 2023-03-24
Technical release. No changes.
5.3.0 - 2023-03-20
Added
Property
DocumentAutoCaptureController.ProcessingResult.phase.Enum
Phase.
Changed
Method
DocumentAutoCaptureFragment.start()(re)starts the process any time during the lifecycle of the component.
Removed
Property
DocumentAutoCaptureController.ProcessingResult.events. Use propertyDocumentAutoCaptureController.ProcessingResult.phaseinstead.Enum
DocumentAutoCaptureController.ProcessingResult.Event.Method
DocumentAutoCaptureController.restart(). Create new instance ofDocumentAutoCaptureControllerinstead.Method
DocumentAutoCaptureFragment.restart(). UseDocumentAutoCaptureFragment.start()instead.
5.2.0 - 2023-03-07
Technical release. No changes.
5.1.0 - 2023-02-06
Changed
Minimum Kotlin Gradle plugin version to 1.6.0.
5.0.0 - 2023-01-30
Changed
New SDK versioning: All libraries (DOT Document, DOT Face, DOT Face Lite and DOT NFC) are released simultaneously with a single version name. Libraries with the same version name work correctly at build time and at run time.
DocumentAutoCaptureResult.bgraRawImagenow contains full camera image, instead of cropped image.DocumentAutoCaptureFragment: MethodonDetected()renamed toonProcessed().Method
DocumentAutoCaptureController.process().Class
BrightnessHighValidatorrenamed toBrightnessTooHighValidator.Class
BrightnessLowValidatorrenamed toBrightnessTooLowValidator.Class
HotspotsScoreHighValidatorrenamed toHotspotsScoreTooHighValidator.Class
SharpnessLowValidatorrenamed toSharpnessTooLowValidator.Class
SizeSmallValidatorrenamed toSizeTooSmallValidator.String resource
dot_document_auto_capture_instruction_document_not_presenttodot_document_auto_capture_instruction_document_not_detected.String resource
dot_document_auto_capture_instruction_document_centeringtodot_document_auto_capture_instruction_document_out_of_bounds.String resource
dot_document_auto_capture_instruction_document_too_fartodot_document_auto_capture_instruction_size_too_small.String resource
dot_document_auto_capture_instruction_hotspots_presenttodot_document_auto_capture_instruction_hotspots_score_too_high.Minimum Kotlin Gradle plugin version to 1.7.0.
Added
Method
DocumentAutoCaptureFragment.stopAsync().Method
DocumentAutoCaptureFragment.onStopped().Property
DocumentAutoCaptureDetection.bgraRawImage.Property
DocumentAutoCaptureDetection.travelDocumentType.Property
DocumentAutoCaptureDetection.machineReadableZone.Class
DocumentAutoCaptureController.ProcessingResult.String resource
dot_document_auto_capture_instruction_document_does_not_fit_placeholder.
Removed
DocumentAutoCaptureControllerConfiguration.Builder: MethodonDetectionListener().DocumentAutoCaptureControllerConfiguration.Builder: MethodonCandidateSelectionStartListener().DocumentAutoCaptureControllerConfiguration.Builder: MethodonCaptureListener().Interface
DocumentAutoCaptureController.OnDetectionListener.Interface
DocumentAutoCaptureController.OnCandidateSelectionStartListener.Interface
DocumentAutoCaptureController.OnCaptureListener.Method
DocumentAutoCaptureController.requestCapture().Deprecated API.
3.7.2 - 2022-12-16
Fixed
Stability issue in image conversion.
3.7.1 - 2022-12-15
Fixed
Proguard rules.
3.7.0 - 2022-10-28
Added
Property
DocumentAutoCaptureDetectionValidator.dependencyIdentifiers.Method
DocumentAutoCaptureConfiguration.startQualityAttributeThresholds().Class
QualityAttributeThresholds.
Changed
DocumentAutoCaptureControllerConfiguration.Builder()throws anIllegalArgumentException.Deprecated method
DocumentAutoCaptureConfiguration.Builder.confidenceLowThreshold().Deprecated method
DocumentAutoCaptureConfiguration.Builder.sizeSmallThreshold.Deprecated method
DocumentAutoCaptureConfiguration.Builder.sharpnessLowThreshold().Deprecated method
DocumentAutoCaptureConfiguration.Builder.brightnessLowThreshold().Deprecated method
DocumentAutoCaptureConfiguration.Builder.brightnessHighThreshold().Deprecated method
DocumentAutoCaptureConfiguration.Builder.hotspotsScoreHighThreshold().
3.6.2 - 2022-10-18
Changed
Target Android API level to 33.
Fixed
Document detection accuracy.
Compatibility with latest DOT libraries.
3.6.1 - 2022-08-18
Fixed
Stability issue in Document Auto Capture UI component.
3.6.0 - 2022-08-18
Added
Method
MachineReadableZone.getLines().
Fixed
Minor UI issues in Document Auto Capture UI component.
3.5.0 - 2022-07-06
Added
Method
DotDocumentLibrary.getVersionName().
Changed
Update CameraX to 1.1.0.
Minimum Kotlin Gradle plugin version to 1.6.0.
Fixed
Machine Readable Zone Reader: Parsing long document number and optional data together.
Machine Readable Zone Reader: Parsing element value with more than one filler in the middle.
3.4.1 - 2022-05-31
Fixed
Stability issue in
BgraRawImageFactory.
3.4.0 - 2022-05-18
Changed
Target Android API level to 32.
Design of Document Auto Capture UI component.
Rename all color resources.
3.3.3 - 2022-03-09
Fixed
Camera preview resolution selection.
3.3.2 - 2022-02-17
Fixed
Bind the camera to the fragment lifecycle instead of the activity in UI components.
3.3.1 - 2022-02-14
Fixed
Preview overlay in the Document Auto Capture UI component.
3.3.0 - 2022-01-11
Added
Method
DocumentAutoCaptureConfiguration.Builder.validationMode().Method
DocumentAutoCaptureConfiguration.Builder.sizeSmallThreshold().Method
DocumentAutoCaptureConfiguration.Builder.detectionLayerVisible().Enum
ValidationMode.Class
DocumentOutOfBoundsValidator.Color resource
dot_document_auto_capture_detection_layer.Color resource
dot_document_auto_capture_instruction_candidate_selection_background.Color resource
dot_document_auto_capture_instruction_text.Color resource
dot_document_auto_capture_overlay.
Changed
Document detection accuracy improved.
Validator threshold
SharpnessLowValidator.DEFAULT_THRESHOLDto0.65.Validator threshold
DocumentNotDetectedValidator.DEFAULT_THRESHOLD_CONFIDENCEto0.9.Validator threshold
DocumentDoesNotFitPlaceholderValidator.DEFAULT_THRESHOLD_PENALTYto0.035.Class
DocumentSmallValidatortoSizeSmallValidator.Improved UX of instruction changing in Document Auto Capture.
DocumentAutoCaptureConfiguration.Builder: MethodconfidenceThreshold()renamed toconfidenceLowThreshold().Redesign of the UI of Document Auto Capture component.
Rename color resource
dot_document_auto_capture_placeholder_capturingtodot_document_auto_capture_placeholder_candidate_selection.
Removed
Class
DocumentLargeValidator.String resource
dot_document_auto_capture_instruction_document_too_close.Dimension resource
dot_document_auto_capture_placeholder_dash_path_effect_interval.Dimension resource
dot_document_auto_capture_placeholder_stroke_width.
3.2.0 - 2021-11-29
Changed
Target Android API level to 31.
Improve
DocumentDoesNotFitPlaceholderValidator.Validator threshold
DocumentDoesNotFitPlaceholderValidator.DEFAULT_THRESHOLD_DETECTED_TO_PLACEHOLDER_CORNERS_DISTANCEtoDocumentDoesNotFitPlaceholderValidator.DEFAULT_THRESHOLD_PENALTY.
3.1.0 - 2021-11-05
Added
Callback
DocumentAutoCaptureFragment.onDetected().Callback
DocumentAutoCaptureFragment.onCandidateSelectionStarted().
Changed
Validator threshold
DocumentNotDetectedValidator.DEFAULT_THRESHOLD_CONFIDENCEto0.6.
3.0.2 - 2021-10-08
Fixed
Restarting the Document Auto Capture UI component.
3.0.1 - 2021-10-06
Fixed
Image conversion in
BgraRawImageFactory.create(Bitmap).
3.0.0 - 2021-09-27
Added
Machine Readable Zone Reader component (
MrzReader,MrzReaderConfigurationandMrzReaderFactory).Image Perspective Warper component (
ImagePerspectiveWarperandImagePerspectiveWarperFactory).Class
DocumentDetectorFactory.Class
ImageParametersAnalyzerFactory.Class
DocumentAutoCaptureControllerConfiguration.Class
DocumentAutoCaptureControllerFactory.Class
DocumentAutoCaptureDetection.Class
Corners.Class
BgraRawImageFactory.Class
BitmapFactory.
Changed
groupId
com.innovatrics.androidtocom.innovatrics.dot.Minimum Android API level to 21.
Class
DocumentAutoCaptureArgumentstoDocumentAutoCaptureConfiguration.Method
DocumentAutoCaptureController.detect()toDocumentAutoCaptureController.process().Class
DocumentAutoCaptureController.OnStayStillPhaseEnterListenertoDocumentAutoCaptureController.OnCandidateSelectionStartListener().Class
DetectionResulttoDocumentDetector.Result.Class
PointtoPointDouble.Method
DocumentAutoCaptureController.onPhotoCaptured()toDocumentAutoCaptureController.onCaptured().Method
DocumentAutoCaptureController.postCaptureRequest()toDocumentAutoCaptureController.requestCapture().Class
DetectedDocumenttoDocumentAutoCaptureResult.Performance of document detection is significantly improved.
Removed
Interface
DocumentAutoCaptureFrameParametersEvaluator.Class
DefaultDocumentAutoCaptureFrameParametersEvaluator.Method
DocumentAutoCaptureFragment.onCameraAccessFailed().Method
DocumentAutoCaptureFragment.onCameraInitFailed().Class
PlaceholderEvaluatorFactory.Method
DocumentAutoCaptureController.onAutoCaptureReady().Enum
DocumentAutoCaptureHint.
2.3.1 - 2021-06-17
Fixed
Requesting camera permission if it is already denied.
2.3.0 - 2021-05-14
Added
DocumentAutoCaptureArguments.Builder: MethodconfidenceThreshold().DocumentAutoCaptureArguments.Builder: MethodsharpnessLowThreshold().DocumentAutoCaptureArguments.Builder: MethodbrightnessLowThreshold().DocumentAutoCaptureArguments.Builder: MethodbrightnessHighThreshold().DocumentAutoCaptureArguments.Builder: MethodhotspotsScoreHighThreshold().BrightnessHighValidator.Builder: Methodthreshold().BrightnessLowValidator.Builder: Methodthreshold().DocumentDoesNotFitPlaceholderValidator.Builder: MethoddetectedToPlaceholderCornersDistanceThreshold().DocumentLargeValidator.Builder: MethoddocumentWidthToImageWidthRatioThreshold().DocumentNotDetectedValidator.Builder: MethodconfidenceThreshold().DocumentSmallValidator.Builder: MethoddocumentWidthToImageWidthRatioThreshold().HotspotsScoreHighValidator.Builder: Methodthreshold().SharpnessLowValidator.Builder: Methodthreshold().
Changed
All
DocumentAutoCaptureFrameParametersValidatorimplementations: Instance creation via aBuilder.PlaceholderEvaluatorFactory: Instance creation via aBuilder.
2.2.1 - 2021-03-29
Added
Support for
x86andx86_64architectures.
2.2.0 - 2021-03-17
Changed
Update documentation.
Fixed
Configuration change issue in Document Auto Capture UI component.
2.1.0 - 2021-01-25
Added
Callback
DocumentAutoCaptureFragment.onAutoCaptureReady().Method
DocumentAutoCaptureFragment.start().
Changed
DocumentAutoCaptureFragment: Auto Capture process is not started implicitly. Client needs to call methodDocumentAutoCaptureFragment.start()to start the process.DocumentAutoCaptureFragment: As soon as the photo is captured all views are reset.
2.0.1 - 2021-01-21
Fixed
Issue in method
DocumentAutoCaptureFragment.restart().
2.0.0 - 2021-01-11
Added
Possibility to restart the Document Auto Capture Controller component (method
DocumentAutoCaptureController.restart()).Possibility to restart the Document Auto Capture UI component (method
DocumentAutoCaptureFragment.restart()).New non-UI component: Image Parameters Analyzer.
DefaultDocumentAutoCaptureController.Builder: MethoddetectionFrame().DefaultDocumentAutoCaptureController.Builder: MethodimageParametersFrame().HotspotsScoreHighValidatorfor validating hotspots presence.
Changed
Update target Android SDK version to 30 (Android 11).
DetectionResultDTO does not containsharpnessandbrightnessanymore (these are present inImageParametersDTO).DefaultDocumentAutoCaptureController.Builder: MethoddetectionResultEvaluator()renamed todocumentAutoCaptureFrameParametersEvaluator().DetectionResultEvaluatorrenamed toDocumentAutoCaptureFrameParametersEvaluator.DefaultDetectionResultEvaluatorrenamed toDefaultDocumentAutoCaptureFrameParametersEvaluator.DetectionAttributeValidatorrenamed toDocumentAutoCaptureFrameParametersValidator.DetectionHintrenamed toDocumentAutoCaptureHint.Update documentation.
Removed
DocumentDetector: MethodDetectionResult detectDocument(Nv21Image nv21Image).DefaultDocumentAutoCaptureController.Builder: MethodcroppingFrame().
1.1.0 - 2020-11-25
Added
Possibility to force capture in Document Auto Capture Controller component (method
DocumentAutoCaptureController.requestCapture()).Possibility to force capture in Document Auto Capture UI component (method
DocumentAutoCaptureFragment.postCaptureRequest()).
Changed
Update documentation.
Fixed
Proguard rules.
1.0.0 - 2020-07-31
Changed
Preview image is cropped before document detection (placeholder area and margin).
Document Auto Capture design.
Update documentation.
Fixed
Fix camera preview freezing.
Placeholder position calculation for
cameraPreviewScaleType:ScaleType.CENTER_CROP.
0.3.0 - 2020-07-13
Minor changes.
0.2.0 - 2020-07-11
Changed
Update documentation.
0.1.0 - 2020-07-10
Added
First release.