IDV Android NFC library
v9.6.0
Introduction
IDV Android NFC provides a component for NFC reading which is easy to integrate into an Android application. Supported documents are those which implement ICAO Doc 9303: Machine Readable Travel Documents as specified by International Civil Aviation Organization (ICAO).
Requirements
IDV Android NFC has the following requirements:
Minimum Android API level 24
Minimum Kotlin Gradle plugin version 1.7.0 (if used)
Distribution
Maven Repository
IDV Android NFC is distributed as an Android library (.aar package) stored in the Innovatrics maven repository.
In order to integrate IDV Android NFC 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 dependency on IDV Android NFC library in the build.gradle.kts file. Dependencies of this library will be downloaded alongside the library.
dependencies {
implementation("com.innovatrics.dot:dot-nfc:$dotVersion")
}Licensing
In order to use IDV 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
IDV Android NFC declares the following permission in AndroidManifest.xml:
<uses-permission android:name="android.permission.NFC" />
<uses-permission android:name="android.permission.INTERNET" />Transaction Reporting
IDV Android NFC reports transactions to a remote service. Read more details in the Product Documentation.
Basic Setup
Initialization
Before using any of the components, you need to initialize IDV SDK with the license and DotNfcLibraryConfiguration object.
DotSdkInitializer object in the Samples project shows how to initialize IDV SDK with DotNfcLibraryConfiguration. DotSdk.initialize() method should be called on background thread. Route all calls to DotSdk.initialize() and DotSdk.deinitialize() through a single owner (as DotSdkInitializer does for initialize() in the Samples app), and let that owner perform the DotSdk.isInitialized() check that guards them. Otherwise two threads can both see isInitialized() return false, both call initialize(), and the second call throws (a check-then-act race). Reading DotSdk.isInitialized() on its own needs no such coordination, but the call is not lock-free: it blocks while an initialize() or deinitialize() is running on another thread, so reading it on the main thread (for example in a Fragment’s onViewCreated()) while initialization is in progress can freeze the UI. Read it before you start initialization, or track your own initialization state and observe that instead. Only the check-then-initialize/deinitialize sequence must not run concurrently.
Keep in mind that if you try to use any component without 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. As explained above, route this check-and-reinitialize through the single owner and observe your own initialization state instead of reading DotSdk.isInitialized() on the main thread while an initialization may be running. You can trigger this from your Fragment’s onViewCreated(). This technique is implemented in the Samples project.
Deinitialization
Deinitialization is optional. IDV SDK keeps its native models in process-scoped memory that the operating system reclaims automatically when the process is terminated, so DotSdk.deinitialize() is not required for correctness and is not needed to avoid memory leaks.
Its only purpose is to release that memory footprint earlier, before the process ends, when you know IDV SDK will not be used again for a while. Reloading the models on the next DotSdk.initialize() is expensive, so deinitialize sparingly: at most once, at a quiescent point when leaving the flow (for example when the user finishes or cancels onboarding). Do not deinitialize within the lifecycle of individual Android components (onDestroy(), configuration changes such as screen rotation, or background-to-foreground transitions) - doing so causes repeated, costly deinitialize/initialize cycles. When in doubt, skip deinitialization.
DotSdk.deinitialize() must be called on a background thread. After deinitializing, call DotSdk.initialize() again before using IDV SDK components.
Components
Overview
IDV Android NFC provides a non-UI component for NFC reading. You may build your own UI using the IDV Android NFC functionality.
List of Non-UI Components
- NFC TRAVEL DOCUMENT READER
The component for reading NFC enabled travel documents.
- FLAT TAG STRUCTURE PARSER
The component for parsing flat tag structure in a data group as defined in Doc 9303.
List of UI Components
- UI NFC TRAVEL DOCUMENT READER
A visual component for reading NFC enabled travel documents.
Non-UI Components
NFC Travel Document Reader
The NfcTravelDocumentReader interface provides NFC reading functionality.
Create a NfcTravelDocumentReader:
val certificates = CertificatesFactory.create(inputStream)
val configuration = NfcTravelDocumentReader.Configuration(
authorityCertificates = certificates,
//…
)
val nfcTravelDocumentReader = NfcTravelDocumentReaderFactory.create(configuration)To read NFC data, call the following method on the background thread:
val result = nfcTravelDocumentReader.read(tag, password)Tag represents NFC Tag discovered by NfcAdapter. Password is read either from the Machine Readable Zone or it is the value of Card Access Number.
In case, when server-side authentication of the chip is required, use the read() method with activeAuthenticationChallenge argument. If the Active Authentication protocol is supported by the chip, it will be used for the authentication of the chip and the response (signature) will be returned in NfcTravelDocumentReaderResult data class.
val result = nfcTravelDocumentReader.read(tag, password, activeAuthenticationChallenge)Flat Tag Structure Parser
The FlatTagStructureParser interface parses a byte array into a flat map of data elements.
Create a FlatTagStructureParser:
val flatTagStructureParser = FlatTagStructureParserFactory.create()To parse a Data Group value, call the following method:
val elements: Map<Short, ByteArray> = flatTagStructureParser.parse(bytes)Following data structure is expected as an input:
ELEMENT_1_TAG, ELEMENT_1_LENGTH, ELEMENT_1_VALUE, ..., ELEMENT_N_TAG, ELEMENT_N_LENGTH, ELEMENT_N_VALUESuch a value is parsed into this map:
Tag | Value |
|
|
… | … |
|
|
For example, let the Data Group value be:
\u005C\u0002\u005F\u005B\u005F\u005B\u0008SPECIMENThen the resulting map is as follows:
Tag | Length | Value |
|
|
|
|
|
|
Some country authorities may use this structure in the Optional Details. This data is present in TravelDocument.optionalDetails as a result of the NFC reading.
UI Components
UI NFC Travel Document Reader
A ready-to-use component for incorporating NFC reading capabilities into your application. It includes a set of UI elements to guide the user through the NFC reading process.
This component is based on a Fragment from AndroidX. In order to use it, an abstract NfcTravelDocumentReaderFragment must be subclassed.
The NfcTravelDocumentReaderFragment 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 NfcTravelDocumentReaderFragment.Configuration data class with the desired parameters.
Override the onSucceeded method to handle successful NFC document reading. Similarly, override the onFailed method to manage reading failures.
The reading process of the NFC Travel Document is tied to the fragment’s lifecycle. To cancel the reading process, simply transition the fragment to the destroyed state, for example, by navigating to another fragment.
UI of the fragment can be customized. There are two options for customization:
Overwriting resources
Providing custom view
Overwriting Resources
You can partially customize the UI by replacing the component’s default resources with your own. The following resources are expected by the component:
Strings
You can override the string resources and provide alternative strings for supported languages using the standard Android localization mechanism.
<string name="dot_nfc_nfc_travel_document_reader_reading_subhead">Please keep both device and document still.</string>
<string name="dot_nfc_nfc_travel_document_reader_reading_title">Hold still</string>
<string name="dot_nfc_nfc_travel_document_reader_searching_subhead">Slide your phone gently on the surface of the document until we find the right position.</string>
<string name="dot_nfc_nfc_travel_document_reader_searching_title">Searching for NFC chip…</string>Styles
Text views can be styled by overriding the parent style in the application. To customize the appearance of text views, you can override the following styles:
<style name="Dot.Title" parent="TextAppearance.AppCompat.Title" />
<style name="Dot.Subhead" parent="TextAppearance.AppCompat.Subhead" />Drawables
You can also override the following drawable resources.
R.drawable.dot_nfc_nfc_travel_document_reader_reading
R.drawable.dot_nfc_nfc_travel_document_reader_searchingThe type of R.drawable.dot_nfc_nfc_travel_document_reader_searching must be AnimatedVectorDrawable.
Providing a custom view
For full customization, you can pass a custom layout via constructor or you can supply a custom view by overriding the onCreateView method. If you choose this option, you must also override the onSearchingStarted and onReadingStarted methods to ensure your UI reflects the appropriate state during the document searching and reading processes.
Appendix
Changelog
9.6.0 - 2026-08-05
Changed
Improved SDK initialization and deinitialization documentation.
9.5.0 - 2026-06-30
Changed
Renamed product to IDV (Identity Verification).
9.4.2 - 2026-06-05
Technical release. No changes.
9.4.1 - 2026-06-05
Technical release. No changes.
9.4.0 - 2026-05-29
Technical release. No changes.
9.3.0 - 2026-05-06
Technical release. No changes.
9.2.4 - 2026-04-27
Technical release. No changes.
9.2.3 - 2026-04-23
Technical release. No changes.
9.2.2 - 2026-04-01
Technical release. No changes.
9.2.1 - 2026-03-20
Technical release. No changes.
9.2.0 - 2026-02-27
Technical release. No changes.
9.1.0 - 2026-02-12
Changed
Target Android API level to 36.
9.0.2 - 2026-01-22
Changed
Minimum Kotlin Gradle plugin version to 1.7.0.
AdditionalPersonalDetails.addresscan now contain empty strings if they are present in the travel document.Data Authentication now supports signatures that use non-standard signature algorithm identifiers.
9.0.1 - 2026-01-08
Technical release. No changes.
9.0.0 - 2025-12-16
Added
Class
DotSdk.Configuration.Class
Libraries.Class
DotNfcLibraryConfiguration.Class
CommonConfiguration.Property
NfcTravelDocumentReaderFragment.Configuration.common.
Changed
Class
NfcTravelDocumentReaderExceptiontoNfcTravelDocumentReader.ReadException.Class
NotConnectedExceptiontoNfcTravelDocumentReader.NotConnectedException.Class
AccessControlExpectiontoNfcTravelDocumentReader.AccessControlException.Class
ChipAuthenticationExceptiontoNfcTravelDocumentReader.ChipAuthenticationException.Class
NfcTravelDocumentReaderFragment.Configurationis no longer@Serializable.
Removed
Class
DotSdkConfiguration. UseDotSdk.Configurationinstead.Class
Logger.Constructor of
NfcTravelDocumentReaderFragment.ConfigurationwithnfcKeyargument.Class
NfcKey. Usecom.innovatrics.dot.nfc.access.Passwordinstead.Method
NfcTravelDocumentReader.read(tag: Tag, nfcKey: NfcKey, activeAuthenticationChallenge: ByteArray?). Use methodNfcTravelDocumentReader.read(tag: Tag, password: Password, activeAuthenticationChallenge: ByteArray?)instead.Method
NfcTravelDocumentReader.read(tag: Tag, nfcKey: NfcKey, activeAuthenticationChallenge: ByteArray?, listeners: Listeners). Use methodNfcTravelDocumentReader.read(tag: Tag, password: Password, activeAuthenticationChallenge: ByteArray?, listeners: Listeners)instead.Class
NfcTravelDocumentReaderConfiguration. UseNfcTravelDocumentReader.Configurationinstead.Method
NfcTravelDocumentReaderFactory.create(configuration: NfcTravelDocumentReaderConfiguration). Use methodNfcTravelDocumentReaderFactory.create(configuration: NfcTravelDocumentReader.Configuration)instead.Property
NfcTravelDocumentReaderFragment.Configuration.sessionToken. Usecom.innovatrics.dot.core.ui.configuration.CommonConfigurationinstead.
8.17.0 - 2025-12-05
Fixed
Reading of empty LDS1 Elementary Files.
8.16.4 - 2025-11-10
Fixed
Access control issue with
CANin certain documents.
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
Technical release. No changes.
8.16.0 - 2025-10-16
Added
Active Authentication protocol: Support for non-minimal integer DER encoding in RSA public keys.
8.15.1 - 2025-09-23
Technical release. No changes.
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.
Support for encoding biometric data according to ISO/IEC 39794-5.
Changed
Minimum Android API level to 24.
8.14.2 - 2025-08-15
Technical release. No changes.
8.14.1 - 2025-07-29
Technical release. No changes.
8.14.0 - 2025-07-07
Technical release. No changes.
8.13.0 - 2025-06-19
Technical release. No changes.
8.12.1 - 2025-06-04
Technical release. No changes.
8.12.0 - 2025-06-02
Technical release. No changes.
8.11.1 - 2025-05-21
Fixed
Data Authentication for signatures using the
RSASSA-PSSscheme.
8.11.0 - 2025-05-06
Changed
Enhanced license verification.
8.10.0 - 2025-04-03
Technical release. No changes.
8.9.0 - 2025-04-01
Technical release. No changes.
8.8.0 - 2025-03-26
Fixed
Stability issue.
8.7.2 - 2025-03-06
Fixed
Freezing issue.
8.7.1 - 2025-03-06
Fixed
Class
Logger.
8.7.0 - 2025-02-06
Added
Property
NfcTravelDocumentReader.Configuration.sessionToken.Property
NfcTravelDocumentReaderFragment.Configuration.sessionToken.Class
NfcTravelDocumentReaderResult.
Changed
Method signature
NfcTravelDocumentReader.SucceededListener.onSucceeded(travelDocument: TravelDocument)toonSucceeded(result: NfcTravelDocumentReaderResult). The formerTravelDocumentdata class is now accessible via theNfcTravelDocumentReaderResult.travelDocumentproperty.Return type of method
NfcTravelDocumentReader.read()is nowNfcTravelDocumentReaderResult. The formerTravelDocumentdata class is now accessible via theNfcTravelDocumentReaderResult.travelDocumentproperty.Method signature
NfcTravelDocumentReaderFragment.onSucceeded(travelDocument: TravelDocument)toonSucceeded(result: NfcTravelDocumentReaderResult). The formerTravelDocumentdata class is now accessible via theNfcTravelDocumentReaderResult.travelDocumentproperty.Target Android API level to 35.
8.6.1 - 2025-01-14
Fixed
Issue where parsed values were being incorrectly truncated at the beginning.
Validation of
Password.MachineReadableZoneconstructor arguments.
8.6.0 - 2025-01-09
Technical release. No changes.
8.5.2 - 2024-10-30
Technical release. No changes.
8.5.1 - 2024-10-28
Technical release. No changes.
8.5.0 - 2024-10-24
Technical release. No changes.
8.4.0 - 2024-09-11
Added
Interface
Password.Class
Password.MachineReadableZone.Class
Password.CardAccessNumber.Methods
NfcTravelDocumentReader.read()withpasswordargument.Property
NfcTravelDocumentReaderFragment.Configuration.password.
Changed
Deprecated
NfcKey, usePassword.MachineReadableZoneinstead.Deprecated
NfcTravelDocumentReader.read()methods withnfcKeyargument, use methods withpasswordargument instead.Deprecated constructor of
NfcTravelDocumentReaderFragment.ConfigurationwithnfcKeyargument.
8.3.3 - 2024-09-05
Technical release. No changes.
8.3.2 - 2024-09-05
Added
Method
NfcTravelDocumentReader.cancel().Method
NfcTravelDocumentReaderFragment.onSearchingStarted().Method
NfcTravelDocumentReaderFragment.onReadingStarted().
Changed
Drawable resource
dot_nfc_nfc_travel_document_reader_searching.
Fixed
Issue with the cancellation of the UI component.
Removed
Reduce overloading of
NfcTravelDocumentReader.read()methods. Java consumers who were previously utilizing the overloaded methods will need to update their code by passingnullvalues for any arguments that are no applicable to their use case.
8.3.1 - 2024-08-16
Technical release. No changes.
8.3.0 - 2024-08-08
Technical release. No changes.
8.2.0 - 2024-07-30
Added
Class
FlatTagStructureParser.ParsingException.
8.1.0 - 2024-07-08
Technical release. No changes.
8.0.0 - 2024-06-27
Changed
Class
MachineReadableZoneInformationand containing data classes.
7.5.8 - 2024-06-19
Technical release. No changes.
7.5.7 - 2024-06-04
Fixed
Reporting of NFC transactions to remote service.
7.5.6 - 2024-06-04
Fixed
Reporting of NFC transactions to remote service.
7.5.5 - 2024-05-30
Fixed
Stability issue.
7.5.4 - 2024-05-14
Technical release. No changes.
7.5.3 - 2024-04-26
Technical release. No changes.
7.5.2 - 2024-04-25
Added
Class
NotConnectedException.
Fixed
Retry when connection with NFC tag is lost on some devices.
7.5.1 - 2024-04-15
Technical release. No changes.
7.5.0 - 2024-04-03
Added
Method
NfcTravelDocumentReaderFragment.provideConfiguration()Class
NfcTravelDocumentReader.Configuration
Changed
Deprecated
NfcTravelDocumentReaderConfiguration.Builder, useNfcTravelDocumentReader.Configurationinstead.Deprecated
NfcTravelDocumentReaderConfiguration, useNfcTravelDocumentReader.Configurationinstead.Deprecated
NfcTravelDocumentReaderFactory.create(NfcTravelDocumentReaderConfiguration), useNfcTravelDocumentReaderFactory.create(NfcTravelDocumentReader.Configuration)instead.Deprecated
NfcTravelDocumentReaderFragment.CONFIGURATION, overrideNfcTravelDocumentReaderFragment.provideConfiguration()method to provide configuration instead.
7.4.2 - 2024-04-02
Fixed
Proguard rules.
7.4.1 - 2024-03-27
Changed
Target Android API level to 34.
7.4.0 - 2024-03-18
Added
Interface
NfcTravelDocumentReader.AccessEstablishmentStartedListener.Interface
NfcTravelDocumentReader.ElementaryFilesReadingProgressUpdatedListener.Interface
NfcTravelDocumentReader.DataAuthenticationStartedListener.Interface
NfcTravelDocumentReader.SucceededListener.Interface
NfcTravelDocumentReader.FailedListener.Class
NfcTravelDocumentReader.Listeners.Method
NfcTravelDocumentReader.read(tag: Tag, nfcKey: NfcKey, listeners: Listeners).Method
NfcTravelDocumentReader.read(tag: Tag, nfcKey: NfcKey, activeAuthenticationChallenge: ByteArray?, listeners: Listeners).Enum
Lds1ElementaryFile.Id.Property
Lds1ElementaryFile.id.Class
NfcTravelDocumentReaderFragment.Class
NfcTravelDocumentReaderFragment.Configuration.String resource
dot_nfc_nfc_travel_document_reader_searching_title.String resource
dot_nfc_nfc_travel_document_reader_searching_subhead.String resource
dot_nfc_nfc_travel_document_reader_reading_title.String resource
dot_nfc_nfc_travel_document_reader_reading_subhead.Style resource
Dot.Title.Style resource
Dot.Subhead.Drawable resource
dot_nfc_nfc_travel_document_reader_readingDrawable resource
dot_nfc_nfc_travel_document_reader_searching
Changed
Class
NfcKeyimplementsSerializable.
Fixed
Issue with chip authentication with some cards.
Issue with data authentication with some cards.
Exceptions throwing.
7.3.0 - 2024-02-23
Added
Permission
android.permission.INTERNETin Android manifest.Reporting of NFC transactions to remote service. See the https://developers.innovatrics.com/digital-onboarding/technical/transactions/#reporting-of-usage-with-nfc-mobile-library.
Fixed
Issue with chip authentication with some cards.
Issue with data authentication with some cards.
7.2.2 - 2024-02-07
Fixed
Issue with reading cards that do not support short file identifiers.
7.2.1 - 2024-02-05
Added
Property
REQUIRE_SECURE_ENVwith value1under the<application>in Android manifest.
7.2.0 - 2023-12-28
Technical release. No changes.
7.1.0 - 2023-12-14
Changed
Method
NfcTravelDocumentReader.read()throwsNfcTravelDocumentReaderExceptioninstead ofRuntimeException.Access Control mechanism reworked. BAC protocol is used by default. PACE protocol is used only if BAC protocol fails or BAC is not available.
7.0.2 - 2023-12-05
Technical release. No changes.
7.0.1 - 2023-11-21
Fixed
Performance issue.
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
DotNfcLibraryreworked.
6.5.2 - 2023-10-20
Technical release. No changes.
6.5.1 - 2023-10-19
Technical release. No changes.
6.5.0 - 2023-10-04
Technical release. No changes.
6.4.0 - 2023-09-20
Fixed
Stability issue.
6.3.1 - 2023-08-21
Technical release. No changes.
6.3.0 - 2023-08-17
Technical release. No changes.
6.2.1 - 2023-07-27
Fixed
PACE access protocol authentication on some chips.
6.2.0 - 2023-07-26
Technical release. No changes.
6.1.0 - 2023-07-07
Fixed
Explicit challenge-response when Active Authentication protocol results as denied.
6.0.0 - 2023-06-14
Technical release. No changes.
5.5.1 - 2023-06-06
Technical release. No changes.
5.5.0 - 2023-04-26
Added
Explicit challenge-response for Active Authentication in API suitable for server-side validation.
Method
NfcTravelDocumentReader.read()withactiveAuthenticationChallengeargument.Property
ChipAuthenticationStatus.activeAuthenticationResponse.
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
Technical release. No changes.
5.2.0 - 2023-03-07
Added
TravelDocument: PropertyauthenticationStatus.Class
AuthenticationStatus.Class
ChipAuthenticationStatus.Class
DataAuthenticationStatus.
Removed
TravelDocument: PropertyactiveAuthenticationStatus.TravelDocument: PropertypassiveAuthenticationStatus.
5.1.0 - 2023-02-06
Changed
Minimum Kotlin Gradle plugin version to 1.6.0.
5.0.0 - 2023-01-30
Changed
Target Android API level to 33.
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.
Minimum Kotlin Gradle plugin version to 1.7.0.
2.3.4 - 2022-09-26
Fixed
Issues if the consumer application is obfuscated (consumer proguard rules).
2.3.3 - 2022-09-16
Fixed
Reading NFC if the Data Group 13 is present.
2.3.2 - 2022-08-18
Fixed
Compatibility with latest DOT libraries.
2.3.1 - 2022-07-26
Fixed
Integration manual:
TravelDocumentclass.
2.3.0 - 2022-07-21
Added
Method
DotNfcLibrary.getVersionName().Class attribute
TravelDocument.ldsMasterFile.Class
LdsMasterFile.Class
Lds1eMrtdApplication.Class
Lds1ElementaryFile.
Fixed
Parsing
TravelDocument.machineReadableZoneInformation.optionalDatafor TD3 documents.Class attribute
TravelDocument.encodedIdentificationFeaturesFaceis non-null.
2.2.2 - 2022-05-27
Fixed
Stability issues.
2.2.1 - 2022-01-25
Added
Class
CertificatesFactory.
Fixed
Authority certificates compatibility on Android API level <= 27.
Handling of lost connection.
2.2.0 - 2022-01-21
Added
Flat Tag Structure Parser component.
Interface
FlatTagStructureParser.Class
FlatTagStructureParserFactory.
2.1.0 - 2022-01-19
Added
Class
OptionalDetails.Class attribute
TravelDocument.optionalDetails.
Changed
Data type of
AdditionalPersonalDetails.nameOfHoldertoNameOfHolder.
Fixed
Passive Authentication for documents that are out of their validity period.
Resolving
JPEGimage format (enumImageFormat).Passive Authentication.
2.0.0 - 2021-12-02
Added
Enum
AccessControlProtocol.Class
AdditionalDocumentDetails.Class
AdditionalPersonalDetails.Class
DisplayedSignatureOrUsualMark.Class
EncodedIdentificationFeaturesFace.Class
MachineReadableZoneInformation.Class
NameOfHolder.Class
NfcTravelDocumentReaderConfiguration.Class
NfcTravelDocumentReaderFactory.
Changed
groupId
com.innovatrics.androidtocom.innovatrics.dot.Minimum Android API level to 21.
Target Android API level to 31.
Class
TravelDocumentAccessFailedExceptiontoAccessControlException.Enum
ActiveAuthentication.StatustoActiveAuthenticationStatus.Enum
PassiveAuthentication.StatustoPassiveAuthenticationStatus.Class
NfcTravelDocumentReaderto an interfaceNfcTravelDocumentReader.Structure of class
TravelDocument.
Fixed
Active Authentication.
1.0.0 - 2020-05-27
Added
First major release.