@nativescript-community/ui-mapbox 6.2.20 → 6.2.21

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -3,6 +3,12 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## [6.2.21](https://github.com/nativescript-community/ui-mapbox/compare/v6.2.20...v6.2.21) (2023-11-17)
7
+
8
+ ### Bug Fixes
9
+
10
+ * **android:** plugin build fix ([d2d663a](https://github.com/nativescript-community/ui-mapbox/commit/d2d663a7f2c15bae8e568ff77b42405b0244eb64))
11
+
6
12
  ## [6.2.20](https://github.com/nativescript-community/ui-mapbox/compare/v6.2.19...v6.2.20) (2023-09-06)
7
13
 
8
14
  **Note:** Version bump only for package @nativescript-community/ui-mapbox
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nativescript-community/ui-mapbox",
3
- "version": "6.2.20",
3
+ "version": "6.2.21",
4
4
  "description": "Interactive, thoroughly customizable maps powered by vector tiles and OpenGL.",
5
5
  "main": "index",
6
6
  "typings": "index.d.ts",
@@ -54,5 +54,5 @@
54
54
  "dependencies": {
55
55
  "@nativescript-community/perms": "^2.3.0"
56
56
  },
57
- "gitHead": "b8447280a87a4333e0a2a64adab0153e3dff4bf6"
57
+ "gitHead": "d28689cba462ecb748e8b1424c8b3c78fc418ab3"
58
58
  }
@@ -10,27 +10,31 @@ dependencies {
10
10
  def mapboxPluginsVersion = project.hasProperty("mapboxPluginsVersion") ? project.mapboxPluginsVersion : "v9"
11
11
  def mapboxAnnotationPluginVersion = project.hasProperty("mapboxAnnotationPluginVersion") ? project.mapboxAnnotationPluginVersion : "0.9.0"
12
12
  def mapboxGesturesVersion = project.hasProperty("mapboxGesturesVersion") ? project.mapboxGesturesVersion : "0.7.0"
13
- def squareupVersion = project.hasProperty("squareupVersion") ? project.mapboxGesturesVersion : "4.9.0"
14
-
15
- implementation "com.mapbox.mapboxsdk:mapbox-android-telemetry:$mapboxTelemetryVersion"
16
-
17
- implementation "com.mapbox.mapboxsdk:mapbox-sdk-geojson:$mapboxServicesVersion"
18
-
19
- implementation ("com.mapbox.mapboxsdk:mapbox-android-sdk:$mapboxVersion"){
13
+ def okHttpVersion = project.hasProperty("okHttpVersion") ? project.okHttpVersion : "4.9.0"
14
+ implementation ("com.mapbox.mapboxsdk:mapbox-android-sdk:$mapboxVersion") {
20
15
  transitive=false
21
16
  }
22
17
 
23
- implementation "com.mapbox.mapboxsdk:mapbox-android-gestures:$mapboxGesturesVersion"
24
-
25
- // service library
26
-
27
- implementation "com.mapbox.mapboxsdk:mapbox-sdk-services:$mapboxServicesVersion"
18
+ implementation ("com.mapbox.mapboxsdk:mapbox-android-telemetry:$mapboxTelemetryVersion") {
19
+ transitive=false
20
+ }
21
+ implementation ("com.mapbox.mapboxsdk:mapbox-sdk-geojson:$mapboxServicesVersion"){
22
+ transitive=false
23
+ }
24
+ implementation ("com.mapbox.mapboxsdk:mapbox-android-gestures:$mapboxGesturesVersion"){
25
+ transitive=false
26
+ }
27
+ implementation ("com.mapbox.mapboxsdk:mapbox-sdk-services:$mapboxServicesVersion"){
28
+ transitive=false
29
+ }
30
+ implementation ("com.mapbox.mapboxsdk:mapbox-android-plugin-annotation-$mapboxPluginsVersion:$mapboxAnnotationPluginVersion"){
31
+ transitive=false
32
+ }
28
33
 
29
- // Annotation Plugin
34
+ implementation "com.squareup.okhttp3:okhttp:$okHttpVersion"
30
35
 
31
- implementation "com.mapbox.mapboxsdk:mapbox-android-plugin-annotation-$mapboxPluginsVersion:$mapboxAnnotationPluginVersion"
36
+ println 'com.mapbox.mapboxsdk:mapbox-android-sdk:$mapboxVersion'
32
37
 
33
- implementation "com.squareup.okhttp3:okhttp:$squareupVersion"
34
38
  }
35
39
 
36
40
  android {