Quickstart
How to use example project
- Open your application (
androidApp) module (build.gradle.kts);
- Set
projectId and projectSecretKey variables
- Run sync gradle task
Importing libraries in your project
The SDK for Android libraries can be imported via MavenCentral. To import the libraries via
MavenCentral, you need to do the following:
- Open your application (
androidApp) module (build.gradle.kts);
- In the
repositories {} section, specify the mavenCentral repository:
allprojects {
repositories {
google()
mavenCentral()
}
}
- In the
dependencies {} section, add the following dependencies:
implementation "com.ecommpay:msdk-core-android:LATEST_VERSION"