You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
As we switched to a community managed plugin we upgraded the version of the Mapbox SDKs. Though starting from iOS SDK 6.0 and android SDK 9.0 they need special handling for downloading the SDK:
On android the plugin default to 8.x. You can change it by creating a `before-plugins.gradle` in `App_Resources/Android` with (showing current versions):
24
+
```
25
+
ext {
26
+
okHttpVersion = "3.12.10"
27
+
def mapboxVersion = "8.6.6"
28
+
def mapboxTelemetryVersion = "6.1.0"
29
+
def mapboxPluginsVersion = "v9"
30
+
def mapboxAnnotationPluginVersion = "0.9.0"
31
+
def mapboxGesturesVersion = "0.7.0"
32
+
}
33
+
34
+
```
35
+
36
+
On iOS we dont force anything so it will get the latest one. If you want to change it create a `Podfile` in `App_Resources/iOS` with (see demo app):
37
+
```
38
+
pod 'Mapbox-iOS-SDK', '~> 5.1.1'
39
+
```
40
+
26
41
27
42
## Before you begin - Prerequisites
28
43
You either need your own tile server such as the one provided by [openmaptiles.org](https://openmaptiles.org) or a Mapbox API access token (they have a 🆓 Starter plan!), so [sign up with Mapbox](https://www.mapbox.com/signup/).
@@ -33,7 +48,7 @@ You will also need to set up your development environment. Please refer to the [
0 commit comments