Integration of Pay-me SDK in Android project
To add Pay-me SDK in an Android project you should consider the following:
You must have the latest version of the SDK, download here.
The libraries (Payme, SecureKey3DS, VisaSensoryBranding and MastercardSonic) must be added inside the project. The authentication SDK provided by Alignet must also be added. It is recommended to create a libs folder inside the merchant project, this folder should contain the four SDKs delivered by Pay-me.
The four SDKs must be implemented inside the project. Go to the Gradle of the commerce project and add the four SDKs inside the dependencies section:
dependencies {
implementation files('../libs/SecureKey3DS.aar')
implementation files('../libs/Payme.aar')
implementation files('../libs/VisaSensoryBranding.aar')
implementation files('../libs/MastercardSonic.aar')
}