Skip to content

datalogic/aladdin-app-sdk

Repository files navigation

aladdin-app-sdk

Release

SDK repository for Android integration with the Aladdin application.

Follow the steps below to add to your Android project.

  1. Add jitpack.io repository to dependency resolution:

    dependencyResolutionManagement {
        repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
        repositories {
            google()
            mavenCentral()
            maven { url 'https://jitpack.io' } // add Jitpack
        }
    }
  2. Add the dependency:

    dependencies {
          implementation 'com.github.datalogic:aladdin-app-sdk:{latest version}'
      }