Skip to content

Latest commit

 

History

History
48 lines (37 loc) · 1.47 KB

README.md

File metadata and controls

48 lines (37 loc) · 1.47 KB

Maxpay Payment Android SDK

GitHub release License

The Maxpay Payment Android SDK makes it quick and easy to build a payment screen in your Android app. We provide customizable SDKFacade that can be used out-of-the-box.

Content

Requirements

Android 5.0 (API level 21) and above

Installation

To integrate the Maxpay Payment Android SDK, you need to perform a few basic tasks to prepare your Android Studio project:

1. Edit your project Gradle file

Add rules to your root-level build.gradle file:

allprojects {
    // ...
    repositories {
        // ...
        mavenCentral()
    }
}

2. Edit your module Gradle file

In your module Gradle file (usually the app/build.gradle), add the implementation(...) line in your dependencies to import the SDK:

apply plugin: 'com.android.application'

android {
  // ...
}

dependencies {
  // ...
  implementation 'com.maxpay.android:sdk-payment:1.1.0'
}

Integration with SDK

How integrate SDK to your project see here.