Installation

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.

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-ble:2+'
  // or
  // implementation 'com.validic.mobile:validicmobile-ble:1+'

}