Copyright (c) 2019 Simpals
Current Release: 0.5.7 (2022)
More information about the API can be found on the Map Portal's API page.
You have two ways to set up your app to use the MapMd SDK:
- Setting project
- Setting up your project with the MapMd SDK
Setting project
- Open Link
- Click Button "Get Code"
- Put your Package Name
- Click button "Save"
Android Studio Setup
- Go to Android Studio | New Project.
- Select API 17: Android 4.1 or higher and create your new project.
- After you create a new project, open build.gradle and do the following:
Gradle dependency
allprojects {
repositories {
maven { url 'https://jitpack.io' }
}
}
dependencies {
implementation 'com.github.Mapmd:MapMd:<VERSION>'
}Be sure to replace <VERSION> with the last release version above.
Platform or API Level (API level 17 = Platform 4.1)
<platform>17</platform>