How to add the SDK to the project?

This page covers the ways of adding SDK to your project

Document Reader libraries are available in our Maven repositoryarrow-up-right. Add the following lines to the build.gradle to the repositories {} section:

maven {
    url "http://maven.regulaforensics.com/RegulaDocumentReader"
}

Then add the API library as a dependency and make sure transitive is set to true, simply adding the following lines of code to the build.gradle file of your project:

implementation ('com.regula.documentreader:api:+@aar'){
    transitive = true
}

And add one of the Core libraries depend on the functionality that you wish and the license capabilities:

  • Install barcode library edition:

implementation 'com.regula.documentreader.core:barcode:+@aar'
  • Install barcodemrz library edition:

implementation 'com.regula.documentreader.core:barcodemrz:+@aar'
  • Install barcodemrzrfid library edition:

implementation 'com.regula.documentreader.core:barcodemrzrfid:+@aar'
  • Install bounds library edition:

implementation 'com.regula.documentreader.core:bounds:+@aar'
  • Install doctype library edition:

implementation 'com.regula.documentreader.core:doctype:+@aar'
  • Install full library edition:

  • Install fullrfid library edition:

  • Install mrz library edition:

  • Install mrzrfid library edition:

  • Install ocrandmrz library edition:

  • Install ocrandmrzrfid library edition:

Last updated

Was this helpful?