These instructions are for developers interested in making code-level contributions to the SDK itself.
All new code should be written in Kotlin.
To check Kotlin style, we use ktlint. This linter is based on the official Kotlin coding conventions. We intergrate with it using the kotlinder Gradle plugin.
To check the style of all Kotlin source files, use:
$ ./gradlew checkStyle
To format all Kotlin source files, use:
$ ./gradlew formatKotlin
Clone the git repository and pull in submodules:
git clone git@github.com:maplibre/maplibre-native.git
git submodule update --init --recursive
cd platform/android
These dependencies are required for all operating systems and all platform targets.
- Latest stable Android Studio
- Update the Mapbox Maps SDK for Android with the latest
- Android SDK Build-Tools
- Android Platform-Tools
- Android SDK Tools
- CMake
- NDK
- LLDB
- Modern C++ compiler that supports
-std=c++14
*- clang++ 3.5 or later or
- g++-4.9 or later
- Node.js
- make sure npm is installed as well
- ccache (optional)
Note: We partially support C++14 because GCC 4.9 does not fully implement the final draft of the C++14 standard. More information in DEVELOPING.md.
Note: On macOS you can install clang with installing the Apple command line developer tools.
- Environment
- Android Studio
- node
JAVA_HOME="/Applications/Android Studio.app/Contents/jre/Contents/Home"
ANDROID_SDK_ROOT=~/Library/Android/sdk
- In Android Studio, go to Tools > SDK Manager to install CMake and the specific NDK version specified in
dependencies.gradle
.
Open platform/android
with Android Studio.
run make android-configuration
in the root folder of the project and open in Android Studio.
If you are using Arch Linux, install ncurses5-compat-libs.
Mapbox uses specific IDE settings related to code and check style. See checkstyle guide for configuration details.
With buck build support, Android Studio can complain about duplicate source files. To remove this warning, open MapboxGLAndroidSDK.iml
find the list of excludeFolder
entries and add <excludeFolder url="file://$MODULE_DIR$/../../../misc/" />
line.
The test application (used for development purposes) uses MapTiler vector tiles, which require a MapTiler account and API key.
With the first gradle invocation, gradle will take the value of the MLN_API_KEY
environment variable and save it to MapboxGLAndroidSDKTestApp/src/main/res/values/developer-config.xml
. If the environment variable wasn't set, you can edit developer-config.xml
manually and add your api key to the api_key
resource.
Run the configuration for the MapboxGLAndroidSDKTestApp
module and select a device or emulator to deploy on. Based on the selected device, the c++ code will be compiled for the related processor architecture. You can see the project compiling in the View > Tool Windows > Gradle Console
.
More information about building and distributing this project in DISTRIBUTE.md.
Instead of using the latest stable release of the Maps SDK for Android, you can use a "snapshot" or the beta version if there is one available. Our snapshots are built every time a Github pull request adds code to this repository's master
branch. If you'd like to use a snapshot build, your Android project's gradle file should have -SNAPSHOT appended to the SDK version number:
// Mapbox SDK dependency
implementation 'com.mapbox.mapboxsdk:mapbox-android-sdk:9.1.0-SNAPSHOT'
You also need to have the section below in your build.gradle root folder to be able to resolve the SNAPSHOT dependencies:
allprojects {
repositories {
jcenter()
maven { url 'https://oss.jfrog.org/artifactory/oss-snapshot-local/' }
}
}
When hitting native crashes you can use ndk-stack to symbolicate crashes. More information in this guide.
The results of the instrumentation tests can be accessed on the AWS Console:
You can log with the maplibre
alias, with maplibre
as username and maplibre
as password (this is a read-only account).