View on GitHub

sensibill-android-documentation

Installation

Installation via Maven

Maven Access

The primary method of installing this module is via Sensibill’s private maven server. All stable artifacts are stored on a private maven server than can only be accessed using an authorized username and password. Contact Sensibill’s Client Services to acquire credentials. Once you have maven credentials, adding the following to your project build.gradle file will grant access to the private maven repository.

allprojects {
    repositories {
        maven {
            // Sensibill SDK repository
            url 'https://maven.getsensibill.com'
                credentials {
                    username 'to be provided by sensibill'
                    password 'to be provided by sensibill'
                }
        }
    }
}


Maven Dependency

To add the Standalone Capture module to your Android project, add the following to the dependencies section of your main app module’s build.gradle file.

dependencies {
    // ...

    // See the rest of the documentation for the most up to date version
    def sensibillSdkVersion = 'X.X.X'

    // Standalone Capture Module
    implementation "com.getsensibill:sensibill-capture-standalone:$sensibillSdkVersion"

    // ...
}