Installation

Native Android ==> OCR module

The Distribution zip contains a local Maven repository, validic-repository that can be used to add the library and its dependencies to your project's classpath. A minimum sdk of 26 is supported (you may choose a higher value):

android {
  defaultConfig {
      minSdkVersion 26
  }
}

In your app/build.gradle file add the following:

repositories {
  mavenCentral()
  google()
  maven {
      // Android Maven Distribution folder from zip. Change to point to folder location
      url "../../validic-repository"
  }
}

dependencies {
  implementation 'com.validic.mobile:validicmobile-shared:+'
  implementation 'com.validic.mobile:validicmobile-ocr:2.+'

  // implementation 'com.validic.mobile:validicmobile-ocr:1.+'
}