
Facilitates integration of payment processing capabilities into Android applications, with setup instructions for project ID and secret key configuration, utilizing MavenCentral for library importation.
How to use example project
androidApp) module (build.gradle.kts);projectId and projectSecretKey variablesImporting 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:
androidApp) module (build.gradle.kts);repositories {} section, specify the mavenCentral repository:allprojects {
repositories {
google()
mavenCentral()
}
}
dependencies {} section, add the following dependencies:implementation "com.ecommpay:msdk-core-android:LATEST_VERSION"
How to use example project
androidApp) module (build.gradle.kts);projectId and projectSecretKey variablesImporting 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:
androidApp) module (build.gradle.kts);repositories {} section, specify the mavenCentral repository:allprojects {
repositories {
google()
mavenCentral()
}
}
dependencies {} section, add the following dependencies:implementation "com.ecommpay:msdk-core-android:LATEST_VERSION"