Skip to content

Getting Started

Our mpos sdk provides a device agnostic interface for interacting with and accepting card payment with any of our supported mpos devices.

The SDK currently supports Android devices with API 21+.

Getting started

Add the dependency with the latest version to your apps build.gradle dependency section

depedencies {
    implementation "com.globalaccelerex.mpos:payment:<latest-version>"
}

Optionally, if you want to support receipt printing via portable bluetooth receipt printer, you can add the following dependency.

implementation "com.globalaccelerex.printer:bluetooth:<lastest-version>"

In your project's build.gradle, update the allProjects repository section with the maven repository link. Contact us for the link.

allprojects {
    repositories {
        google()
        mavenCentral()
        maven {
            url "https://<url-shared-with-you>"
        }
    }
}