Keep access tokens private in open source iOS and Android apps
An app using the Mapbox Maps SDK for iOS or the Mapbox Maps SDK for Android, must provide an access token to display Mapbox-hosted maps and use other Mapbox services.
It is important to practice responsible token management with all Mapbox access tokens. This guide expands on general token management strategies to provide guidance specific to iOS and Android applications.
iOS
- Create a new plain text file containing your access token, named either
.mapboxormapbox. To avoid accidentally committing this file to an open-source project, either you can save it to a location outside your project's version-controlled directory, or you can add this file to your project’s .gitignore file. - Open your project in Xcode. In the project editor, go to the Build Phases tab, then click the + button to add a new Run Script phase to the end.
- Customize the Run Script build phase to run the following code (replacing
~/.mapboxor~/mapboxwith the path to the file you added in step 1):# Look for a global file named 'mapbox' or '.mapbox' within the home directory
token_file=~/.mapbox
token_file2=~/mapbox
token="$(cat $token_file 2>/dev/null || cat $token_file2 2>/dev/null)"
if [ "$token" ]; then
plutil -replace MBXAccessToken -string $token "$TARGET_BUILD_DIR/$INFOPLIST_PATH"
else
echo 'warning: Missing Mapbox access token'
open 'https://console.mapbox.com/account/access-tokens/'
echo "warning: Get an access token from <https://console.mapbox.com/account/access-tokens/>, then create a new file at $token_file or $token_file2 that contains the access token."
fi - Add
$(TARGET_BUILD_DIR)/$(INFOPLIST_PATH)to the build phase’s Input Files section. Otherwise, the access token may be overridden during incremental builds. Optionally, you can also add~/.mapboxor~/mapboxto this section, so that Xcode will automatically update Info.plist after you change your access token.
When building the project in Xcode, the access token will be inserted into the Info.plist inside your built app, but not into the Info.plist that you’d commit.
Android
Git-based option
Be aware that to enable continuous integration builds with the following approach, you can take advantage of a Gradle script that the Mapbox Android team uses itself.
- Create a local
.gitignorefile in your repository folder. If the folder already has a.gitignorefile, locate and open it. - Add the following line to the
.gitignorefile :YOUR_APP_MODULE_NAME/src/main/res/values/developer-config.xml. This will tell the Git system to ignore the XML values file that you will create in the next step. - Navigate to your project's
src/main/res/valuesfolder and make a new file titleddeveloper-config.xml. - Create an
mapbox_access_tokenString resource and paste your access token into it:
<string name="mapbox_access_token">PASTE_YOUR_TOKEN_HERE</string>
- At this point, the
R.string.mapbox_access_tokenstring resource should be discoverable wherever you deliver the access token to theMapboxclass such as:Mapbox.getInstance(context, getString(R.string.mapbox_access_token)); - Because of step #3 above, the Git system shouldn't be tracking the
developer-config.xmlfile at all. - You're all set! You can use and change the Mapbox access token locally on your machine without the chance of committing and pushing it to a public platform such as GitHub!
Non-Git option
- Find or create a
gradle.propertiesfile in your Gradle user home folder. The folder is located at«USER_HOME»/.gradle. Once the file is created, its path should be«USER_HOME»/.gradle/gradle.properties. More information about Gradle properties. - Add a key-value pair to the
gradle.propertiesfile:MAPBOX_ACCESS_TOKEN="PASTE_YOUR_TOKEN_HERE"; - Open your app-level
build.gradlefile. This file is usually the one where you define specific dependencies for your app, such as the Mapbox Maps SDK for Android. - Add
MAPBOX_ACCESS_TOKENas abuildConfigFieldentry to whichever buildTypes your app has:
android {
buildTypes {
debug {
...
buildConfigField 'String', "MapboxAccessToken", MAPBOX_ACCESS_TOKEN
...
}
release {
...
buildConfigField 'String', "MapboxAccessToken", MAPBOX_ACCESS_TOKEN
...
}
}
}
5. Because your Gradle files have changed, make sure to sync the project with the latest Gradle files. 6. Now you can access your Mapbox access token in your app to initialize the Mapbox Maps SDK for Android: Mapbox.getInstance(context, BuildConfig.MapboxAccessToken);