Installation
Native Android ==> LifeScan 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 28 is supported (you may choose a higher value):
android {
defaultConfig {
minSdkVersion 28
}
}
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-lifescan:+'
implementation files('libs/OneTouchConnectivityKit.aar') // Provided by Lifescan
}
Updated 4 days ago