Skip to content

Commit e709baf

Browse files
author
farfromrefug
committed
fix(android): use ndk27 of mapbox lib to support 16KB
1 parent c43922d commit e709baf

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

packages/ui-mapbox/platforms/android/include.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,16 +18,16 @@ repositories {
1818

1919
// see https://www.mapbox.com/android-sdk/
2020
dependencies {
21-
def mapboxVersion = project.hasProperty("mapboxVersion") ? project.mapboxVersion : "11.15.3"
21+
def mapboxVersion = project.hasProperty("mapboxVersion") ? project.mapboxVersion : "11.16.2"
2222
def mapboxServicesVersion = project.hasProperty("mapboxServicesVersion") ? project.mapboxServicesVersion : "7.8.0"
2323
def mapboxPluginsVersion = project.hasProperty("mapboxPluginsVersion") ? project.mapboxPluginsVersion : "v9"
2424
def mapboxAnnotationPluginVersion = project.hasProperty("mapboxAnnotationPluginVersion") ? project.mapboxAnnotationPluginVersion : "0.9.0"
2525
def okHttpVersion = project.hasProperty("okHttpVersion") ? project.okHttpVersion : "4.9.0"
2626

2727
println "com.mapbox.maps:android:$mapboxVersion"
2828

29-
// Core Mapbox Maps SDK v11+
30-
implementation "com.mapbox.maps:android:$mapboxVersion"
29+
// Core Mapbox Maps SDK v11+. For now use ndk27 to support 16Kb
30+
implementation "com.mapbox.maps:android-ndk27:$mapboxVersion"
3131

3232
// GeoJSON / Annotations support (choose correct module name & version)
3333
implementation "com.mapbox.mapboxsdk:mapbox-sdk-geojson:$mapboxServicesVersion" // example version

0 commit comments

Comments
 (0)