1.1. Android Intro - Aigul-Irgalina/personal_test GitHub Wiki

Intro

Unlimint mobile SDK helps you to implement payments in your application. Release 1.8 version supports following methods:

  • binding card for further recurring payments,
  • checking which payment methods are available for you,
  • payment with new bank card,
  • payment with saved bank card (token),
  • payment with PayPal.

Unlimint SDK has two parts: SDK UI and SDK Core. SDK UI already contains SDK Core. The former has user interface, root detection and simplified API. It securely collects and transmits user card data. The latter has only payment methods. We strongly recommend to use SDK UI if you don't have PCI DSS certificate.

Wise notice: Unlimint mobile SDK UI just reminds you that the device is rooted. You can accept working on Rooted devices or reject a payment.

Android minSdkVersion 19.

Installation

Add SDK .aar to your project and next dependencies to your Android project.

repositories {
 google()
 jcenter()
 maven { url "https://repos.unlimint.io/repository/mobile-sdk/" }
}
implementation 'com.unlimint.sdk:mobile-sdk-ui:$version'

For SDK Core implementation use com.unlimint.sdk:mobile-sdk-core:$version.