MVN

com.mypos : myposglasssdk

Maven & Gradle

Sep 16, 2022
5 stars

myPOS-Glass-SDK · This repository provides a guidance on integrating an Android app with a myPOS Glass payment solution. Once integrated, the app will be able to communicate and call the main myPOS Glass functionalities in order to accept card payments (Limited to VISA and Mastercard). myPOS-Glass-SDK is a bridge between the applications and myPOS Glass app, converting the smart device into a POS machine, allowing to initiate transaction, complete all steps for processing payment, make refund to the customer card account and send a custom bill slip via mail or SMS. The built-in functionalities of myPOS-Glass-SDK allows you to accept payments, make refunds and void the last approved transaction.

<dependency>
    <groupId>com.mypos</groupId>
    <artifactId>myposglasssdk</artifactId>
    <version>1.0.4</version>
</dependency>
Copy
pom.xml
Table Of Contents

Latest Version

Choose a version of com.mypos : myposglasssdk to add to Maven or Gradle - Latest Versions:

  • Latest Stable: 1.0.4

All Versions

Choose a version of com.mypos : myposglasssdk to add to Maven or Gradle - All Versions:

Version Vulnerabilities Updated
1.0.x
myposglasssdk-1.0.4

How to add a dependency to Maven

Add the following com.mypos : myposglasssdk maven dependency to the pom.xml file with your favorite IDE (IntelliJ / Eclipse / Netbeans):

<dependency>
    <groupId>com.mypos</groupId>
    <artifactId>myposglasssdk</artifactId>
    <version>1.0.4</version>
</dependency>

How to add a dependency to Gradle

Gradle Groovy DSL: Add the following com.mypos : myposglasssdk gradle dependency to your build.gradle file:

implementation 'com.mypos:myposglasssdk:1.0.4'

Gradle Kotlin DSL: Add the following com.mypos : myposglasssdk gradle kotlin dependency to your build.gradle.kts file:

implementation("com.mypos:myposglasssdk:1.0.4")

How to add a dependency to SBT Scala

SBT Scala: Add the following com.mypos : myposglasssdk sbt scala dependency to your build.sbt file:

libraryDependencies += "com.mypos" % "myposglasssdk" % "1.0.4"

Advertisement