Android Native - Getting started
Installation
Before you start developing your application with WemapSDKs, you need to configure your credentials and add the SDK as a dependency.
Configure credentials
Wemap provides WemapSDKs via AWS Maven, and you will need to obtain secret
and access
keys along with the region
to access it. For additional information, please contact Wemap team.
Once you have the credentials, specify accessKey
and secretKey
in project/settings.gradle
maven {
url "s3://mobile-dev.getwemap.com/wemap/sdk/android"
credentials(AwsCredentials) {
accessKey System.getenv("AWS_ACCESS_KEY_ID") // Put your access key here or export it as an environment variable
secretKey System.getenv("AWS_SECRET_ACCESS_KEY") // Put your secret key here or export it as an environment variable
}
}
Examples
For additional examples and sample implementations of WemapSDKs, visit the official GitHub repository.
Clone the repository and follow the README instructions to run the sample application.