Skip to content

Commit d505e6d

Browse files
feat: Update version to 1.7.2 and enhance Android SDK compatibility with 16KB page size support
1 parent ecbd35b commit d505e6d

File tree

3 files changed

+29
-3
lines changed

3 files changed

+29
-3
lines changed

CHANGELOG.md

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,32 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [1.7.2] - 2025-11-25
9+
10+
### Added
11+
- **16KB Page Size Support**: Enhanced Android compatibility for Google Play Store requirements
12+
- Updated `maps-sdk-android` from v2.6.0 to v4.1.0 with full 16KB page size support
13+
- Updated `vietmap-tracking-sdk-android` from v1.2.2 to v1.2.3 with 16KB alignment
14+
15+
### Changed
16+
- **Android Dependencies Update**:
17+
- Maps SDK: Upgraded to v4.1.0 for improved performance and 16KB support
18+
- Tracking SDK: Updated to v1.2.3 with enhanced memory alignment
19+
- Improved APK compatibility with newer Android devices
20+
- Better memory management and reduced potential crashes on 16KB page devices
21+
22+
### Note
23+
- For best compatibility with Google Play's 16KB requirement, consider filtering ABIs:
24+
```gradle
25+
android {
26+
defaultConfig {
27+
ndk {
28+
abiFilters 'arm64-v8a', 'x86_64'
29+
}
30+
}
31+
}
32+
```
33+
834
## [1.7.1] - 2025-10-07
935

1036
### Improved

android/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -106,14 +106,14 @@ dependencies {
106106
implementation "com.google.android.gms:play-services-location:21.0.1"
107107
implementation "com.jakewharton:butterknife:10.2.3"
108108
implementation 'androidx.core:core-ktx:1.7.0'
109-
implementation 'com.github.vietmap-company:maps-sdk-android:2.6.0'
109+
implementation 'com.github.vietmap-company:maps-sdk-android:4.1.0'
110110
implementation 'com.github.vietmap-company:maps-sdk-navigation-ui-android:2.4.1'
111111
implementation 'com.github.vietmap-company:maps-sdk-navigation-android:2.5.1'
112112
implementation 'com.github.vietmap-company:vietmap-services-core:1.0.0'
113113
implementation 'com.github.vietmap-company:vietmap-services-directions-models:1.0.1'
114114
implementation 'com.github.vietmap-company:vietmap-services-turf-android:1.0.2'
115115
implementation 'com.github.vietmap-company:vietmap-services-android:1.1.2'
116-
implementation 'com.github.vietmap-company:vietmap-tracking-sdk-android:1.2.2'
116+
implementation 'com.github.vietmap-company:vietmap-tracking-sdk-android:1.2.3'
117117
implementation 'com.squareup.picasso:picasso:2.8'
118118
implementation 'com.github.vietmap-company:vietmap-services-geojson-android:1.0.0'
119119
implementation group: 'com.squareup.okhttp3', name: 'okhttp', version: '3.2.0'

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@vietmap/vietmap-react-native-navigation",
33
"title": "VietMap React Native turn by turn Navigation",
4-
"version": "1.7.1",
4+
"version": "1.7.2",
55
"description": "VietMap turn-by-turn navigation for React Native.",
66
"main": "dist/index.js",
77
"types": "dist/index.d.ts",

0 commit comments

Comments
 (0)