Skip to content
This repository was archived by the owner on Jun 21, 2023. It is now read-only.

Commit 4cdcd86

Browse files
authored
[deps] update telemetry to 8.1.0 (okhttp3 variant) and events-core 5.0.0 (#683)
1 parent 98d486b commit 4cdcd86

File tree

5 files changed

+16
-5
lines changed

5 files changed

+16
-5
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,11 @@
22

33
Mapbox welcomes participation and contributions from everyone. Please read [`Contributing Guide`](https://github.com/mapbox/mapbox-gl-native/blob/master/CONTRIBUTING.md) to get started.
44

5+
## 9.6.2 - July 7, 2021
6+
[Changes](https://github.com/mapbox/mapbox-gl-native-android/compare/android-v9.6.1...android-v9.6.2) since [Mapbox Maps SDK for Android 9.6.1](https://github.com/mapbox/mapbox-gl-native-android/releases/tag/android-v9.6.0)
7+
### Dependencies
8+
- Update telemetry to 8.1.0 (okhttp3 variant) and events-core 5.0.0 to make project compatible with Android 12
9+
510
## 9.6.1 - February 9, 2021
611
[Changes](https://github.com/mapbox/mapbox-gl-native-android/compare/android-v9.6.0...android-v9.6.1) since [Mapbox Maps SDK for Android 9.6.0](https://github.com/mapbox/mapbox-gl-native-android/releases/tag/android-v9.6.0)
712
### Improvements and bug fixes

MapboxGLAndroidSDK/build.gradle

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ apply plugin: 'com.mapbox.android.sdk.versions'
66
dependencies {
77
lintChecks project(":MapboxGLAndroidSDKLint")
88
api dependenciesList.mapboxAndroidTelemetry
9+
api dependenciesList.mapboxAndroidCore
910
api dependenciesList.mapboxJavaGeoJSON
1011
api dependenciesList.mapboxAndroidGestures
1112
api dependenciesList.mapboxAndroidAccounts

MapboxGLAndroidSDKTestApp/build.gradle

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,8 @@ dependencies {
6666
implementation dependenciesList.supportDesign
6767
implementation dependenciesList.supportConstraintLayout
6868

69+
implementation dependenciesList.okio
70+
implementation dependenciesList.okhttp3
6971
implementation dependenciesList.gmsLocation
7072
implementation dependenciesList.timber
7173
debugImplementation dependenciesList.leakCanaryDebug

gradle/dependencies.gradle

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ ext {
88

99
versions = [
1010
mapboxServices : '5.3.0',
11-
mapboxTelemetry : '6.2.2',
12-
mapboxCore : '3.1.1',
11+
mapboxTelemetry : '8.1.0',
12+
mapboxCore : '5.0.0',
1313
mapboxGestures : '0.7.0',
1414
mapboxAccounts : '0.7.0',
1515
appCompat : '1.0.0',
@@ -41,13 +41,15 @@ ext {
4141
commonsIO : '2.6',
4242
mapboxSdkVersions: '1.1.0',
4343
mapboxSdkCore : '5.2.2',
44-
mapboxSdkRegistryPlugin: '0.3.0'
44+
mapboxSdkRegistryPlugin: '0.3.0',
45+
okio : '2.4.3'
4546
]
4647

4748
dependenciesList = [
4849
mapboxSdkCore : "com.mapbox.mapboxsdk:mapbox-android-sdk-gl-core:${versions.mapboxSdkCore}",
4950
mapboxJavaGeoJSON : "com.mapbox.mapboxsdk:mapbox-sdk-geojson:${versions.mapboxServices}",
50-
mapboxAndroidTelemetry : "com.mapbox.mapboxsdk:mapbox-android-telemetry:${versions.mapboxTelemetry}",
51+
mapboxAndroidTelemetry : "com.mapbox.mapboxsdk:mapbox-android-telemetry-okhttp3:${versions.mapboxTelemetry}",
52+
mapboxAndroidCore : "com.mapbox.mapboxsdk:mapbox-android-core:${versions.mapboxCore}",
5153
mapboxAndroidGestures : "com.mapbox.mapboxsdk:mapbox-android-gestures:${versions.mapboxGestures}",
5254
mapboxAndroidAccounts : "com.mapbox.mapboxsdk:mapbox-android-accounts:${versions.mapboxAccounts}",
5355
mapboxJavaTurf : "com.mapbox.mapboxsdk:mapbox-sdk-turf:${versions.mapboxServices}",
@@ -77,6 +79,7 @@ ext {
7779
gmsLocation : "com.google.android.gms:play-services-location:${versions.gms}",
7880
timber : "com.jakewharton.timber:timber:${versions.timber}",
7981
okhttp3 : "com.squareup.okhttp3:okhttp:${versions.okhttp}",
82+
okio : "com.squareup.okio:okio:${versions.okio}",
8083
leakCanaryDebug : "com.squareup.leakcanary:leakcanary-android:${versions.leakCanary}",
8184
leakCanaryRelease : "com.squareup.leakcanary:leakcanary-android-no-op:${versions.leakCanary}",
8285

vendor/mapbox-events-android

0 commit comments

Comments
 (0)