datalogic / datalogic-android-sdk-selfshopping

Repo for Datalogic Self-shopping SDK, distributed via Jitpack
1 stars 1 forks source link

datalogic-android-sdk-selfshopping

Datalogic Androd SDK Selfshopping extension - see https://datalogic.github.io/ for details.

How to use

Datalogic maintains two ways to use the Datalogic Android SDK in your project:

  1. Install an Android SDK add-on component in the Android SDK Manager, as described here.

  2. Add a gradle dependency for the SDK, which is available through the JitPack.io Maven repository. This option is described below.

Add jitpack.io repository

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 dependency on the SDK

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'
}

Next steps