How to use example project
- Open your application (
androidApp
) module (build.gradle.kts
); - Set
projectId
andprojectSecretKey
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 themavenCentral
repository:
allprojects {
repositories {
google()
mavenCentral()
}
}
- In the
dependencies {}
section, add the following dependencies:
implementation "kz.jetpay:msdk-core-android:LATEST_VERSION"