Accessing the SDK
The purpose of the SDK is to process payment, whilst you embed it in your current working application.
Accessing Maven Repo
aws.accesskey= < PROVIDED IN EMAIL >
aws.secretkey= < PROVIDED IN EMAIL >ext {
Properties properties = new Properties()
def propertiesFile = project.rootProject.file('local.properties')
if (propertiesFile.exists()) {
properties.load(propertiesFile.newDataInputStream())
}
def localAccessKey = properties.getProperty('aws.accesskey')
def systemEnvAccessKey = System.getenv('AWS_ACCESS_KEY_ID')
def localSecretKey = properties.getProperty('aws.secretkey')
def systemEnvSecretKey = System.getenv('AWS_SECRET_ACCESS_KEY')
accessKey = localAccessKey != null ? localAccessKey : systemEnvAccessKey
secretKey = localSecretKey != null ? localSecretKey : systemEnvSecretKey
}Last updated