Skip to main content

ProGlove documentation

Add the Standalone SDK to your project

To use latest Standalone SDK in Android project:

  1. Add the dependency to your app module’s build.gradle:

    dependencies {
        implementation "de.proglove:standalone-sdk:1.0.0"
    }
  2. In your project’s root build.gradle, make sure the following repositories are included:

    repositories {
        google()
        mavenCentral()
        maven { url "https://maven.aliyun.com/repository/jcenter" }
        maven { url "https://jitpack.io " }
        maven { url "https://dl.cloudsmith.io/public/proglove/pgconnect-public/maven/" }
        maven { url "https://dl.cloudsmith.io/" +
                "[your_cloudsmith_token]/proglove/pgconnect-prod/maven/"}
    }
    

Requirements:

  • Android 8.0 or higher (API level 26+)

  • Gradle-based Android project

  • Access to the Standalone SDK (contact sales@proglove.com)

Known limitations
  • All connection limitations of INSIGHT Mobile (Android) also apply, click here for more details.

  • Not all callbacks are not executed on the main thread - wrap UI updates in activity.runOnUiThread { //your code }.

  • Image capture mode is not fully supported.

  • SDK relies on transitive dependencies, which are downloaded automatically when integrated via Gradle.