From edf8aff51f465be6872f4588a86a42eb65d50f5d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Duy=20Ph=E1=BA=A1m?= Date: Wed, 30 Jul 2025 14:13:33 +0700 Subject: [PATCH 1/3] Use Mapbox ndk27 compatible dependencies to support 16KB page size --- gradle/libs.versions.toml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/gradle/libs.versions.toml b/gradle/libs.versions.toml index d941a43..b276796 100644 --- a/gradle/libs.versions.toml +++ b/gradle/libs.versions.toml @@ -35,7 +35,7 @@ secretsGradlePlugin = "2.0.1" sonarqubeGradlePlugin = "3.3" #Map Box -mapboxV10 = "10.18.3" +mapboxV10 = "10.19.0" mapboxV11 = "11.8.0" #Google Map @@ -87,8 +87,8 @@ secrets-gradle-plugin = { module = "com.google.android.libraries.mapsplatform.se sonarqube-gradle-plugin = { module = "org.sonarsource.scanner.gradle:sonarqube-gradle-plugin", version.ref = "sonarqubeGradlePlugin" } #Map Box -mapbox-v10 = { module = "com.mapbox.maps:android", version.ref = "mapboxV10" } -mapbox-v11 = { module = "com.mapbox.maps:android", version.ref = "mapboxV11" } +mapbox-v10 = { module = "com.mapbox.maps:android-ndk27", version.ref = "mapboxV10" } +mapbox-v11 = { module = "com.mapbox.maps:android-ndk27", version.ref = "mapboxV11" } extension-mapbox-compose = { module = "com.mapbox.extension:maps-compose", version.ref = "mapboxV11" } #Google Map From d58c21533e8afa644a9ddbf40f14e04fceaef03d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Duy=20Ph=E1=BA=A1m?= Date: Wed, 30 Jul 2025 14:13:49 +0700 Subject: [PATCH 2/3] Support publishing to local maven --- lib-compose/build.gradle.kts | 1 + lib/build.gradle.kts | 1 + 2 files changed, 2 insertions(+) diff --git a/lib-compose/build.gradle.kts b/lib-compose/build.gradle.kts index 57e1ca5..dda5a9f 100644 --- a/lib-compose/build.gradle.kts +++ b/lib-compose/build.gradle.kts @@ -226,6 +226,7 @@ publishing { } repositories { + mavenLocal() maven { name = "sonatypeSnapshots" url = uri("https://central.sonatype.com/repository/maven-snapshots/") diff --git a/lib/build.gradle.kts b/lib/build.gradle.kts index 18deb9e..d92c600 100644 --- a/lib/build.gradle.kts +++ b/lib/build.gradle.kts @@ -167,6 +167,7 @@ publishing { } repositories { + mavenLocal() maven { name = "sonatypeSnapshots" url = uri("https://central.sonatype.com/repository/maven-snapshots/") From 087e3f76f3fedc6d9833955ee024ed48d4fc71fb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Duy=20Ph=E1=BA=A1m?= Date: Wed, 30 Jul 2025 14:14:00 +0700 Subject: [PATCH 3/3] Bump library verion to 2.1.0 --- gradle.properties | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gradle.properties b/gradle.properties index 447a09f..a45b531 100644 --- a/gradle.properties +++ b/gradle.properties @@ -22,6 +22,6 @@ android.nonTransitiveRClass=true # Kotlin code style for this project: "official" or "obsolete": kotlin.code.style=official android.nonFinalResIds=false -LIBRARY_VERSION=2.0.0 -LIBRARY_COMPOSE_VERSION=2.0.0 +LIBRARY_VERSION=2.1.0 +LIBRARY_COMPOSE_VERSION=2.1.0 MAPBOX_DOWNLOADS_TOKEN = "YOUR_MAPBOX_DOWNLOADS_TOKEN" \ No newline at end of file