Datalogic Androd SDK Selfshopping extension - see https://datalogic.github.io/ for details.
Datalogic maintains two ways to use the Datalogic Android SDK in your project:
-
Install an Android SDK add-on component in the Android SDK Manager, as described here.
-
Add a gradle dependency for the SDK, which is available through the JitPack.io Maven repository. This option is described below.
Add a reference to jitpack.io to the build.gradle
file at your project's base/root directory:
allprojects {
repositories {
jcenter()
maven { url "https://jitpack.io" }
}
}
Add a reference to the specific version of the SDK you would like to use to your app/build.gradle
file. In this example, we are using version v1.8b
. You can see a list of all released versions here. Look for references to the Selfshopping extension.
dependencies {
implementation 'com.github.datalogic:datalogic-android-sdk-selfshopping:v1.8b'
}
-
A number of sample projects that use the Datalogic Android SDK are maintained on our Tutorials page.
-
Reference material for the Datalogic Android SDK is maintained at this location.