Skip to content

Commit 4c21109

Browse files
Update HyperTrack SDK iOS to 5.0.6 and Android to 7.0.8 (#43)
1 parent cfd10aa commit 4c21109

File tree

93 files changed

+124
-138
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

93 files changed

+124
-138
lines changed

.justfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ lint:
3030
push-tag:
3131
#!/usr/bin/env sh
3232
if [ $(git symbolic-ref --short HEAD) = "master" ] ; then
33-
VERSION = $(just version)
33+
VERSION=$(just version)
3434
git tag $VERSION
3535
git push origin $VERSION
3636
else

CHANGELOG.md

Lines changed: 31 additions & 45 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,13 @@
33
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
44
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
55

6+
## [2.0.2] - 2023-11-10
7+
8+
### Changed
9+
10+
- Updated HyperTrack SDK iOS to 5.0.6
11+
- Updated HyperTrack SDK Android to 7.0.8
12+
613
## [2.0.1] - 2023-10-16
714

815
### Changed
@@ -24,8 +31,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
2431
- `name` getter
2532
- `metadata` getter
2633
- HyperTrackError types:
27-
- `noExemptionFromBackgroundStartRestrictions`
28-
- `permissionsNotificationsDenied`
34+
- `noExemptionFromBackgroundStartRestrictions`
35+
- `permissionsNotificationsDenied`
2936

3037
### Changed
3138

@@ -35,17 +42,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
3542
- Updated HyperTrack iOS SDK to [5.0.2](https://github.com/hypertrack/sdk-ios/releases/tag/5.0.2)
3643
- The whole HyperTrack API is now static
3744
- Changed the way to provide publishableKey (
38-
- You need to add `HyperTrackPublishableKey` `meta-data` item to your `AndroidManifest.xml` and
39-
the same entry to `Info.plist`)
45+
- You need to add `HyperTrackPublishableKey` `meta-data` item to your `AndroidManifest.xml` and
46+
the same entry to `Info.plist`)
4047
- Renamed HyperTrackError types:
41-
- `gpsSignalLost` to `locationSignalLost`
42-
- `locationPermissionsDenied` to `permissionsLocationDenied`
43-
- `locationPermissionsInsufficientForBackground`
44-
to `permissionsLocationInsufficientForBackground`
45-
- `locationPermissionsNotDetermined` to `permissionsLocationNotDetermined`
46-
- `locationPermissionsProvisional` to `locationPermissionsProvisional`
47-
- `locationPermissionsReducedAccuracy` to `permissionsLocationReducedAccuracy`
48-
- `locationPermissionsRestricted` to `permissionsLocationRestricted`
48+
- `gpsSignalLost` to `locationSignalLost`
49+
- `locationPermissionsDenied` to `permissionsLocationDenied`
50+
- `locationPermissionsInsufficientForBackground`
51+
to `permissionsLocationInsufficientForBackground`
52+
- `locationPermissionsNotDetermined` to `permissionsLocationNotDetermined`
53+
- `locationPermissionsProvisional` to `locationPermissionsProvisional`
54+
- `locationPermissionsReducedAccuracy` to `permissionsLocationReducedAccuracy`
55+
- `locationPermissionsRestricted` to `permissionsLocationRestricted`
4956
- Renamed `setAvailability()` to `setIsAvailable(boolean)`
5057
- Changed `startTracking()` and `stopTracking()` to `setIsTracking(boolean)`
5158
- Renamed `onTrackingChanged` to `isTrackingSubscription`
@@ -58,11 +65,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
5865
- `initialize()` method (the API is now static)
5966
- Motion Activity permissions are not required for tracking anymore
6067
- HyperTrackError types:
61-
- `motionActivityPermissionsDenied`
62-
- `motionActivityServicesDisabled`
63-
- `motionActivityServicesUnavailable`
64-
- `motionActivityPermissionsRestricted`
65-
- `networkConnectionUnavailable`
68+
- `motionActivityPermissionsDenied`
69+
- `motionActivityServicesDisabled`
70+
- `motionActivityServicesUnavailable`
71+
- `motionActivityPermissionsRestricted`
72+
- `networkConnectionUnavailable`
6673
- `sync()` method
6774

6875
## [1.1.3] - 2023-06-16
@@ -115,9 +122,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
115122
### Added
116123

117124
- `initialize()` configuration params for
118-
- Debug logging
119-
- Background location permissions request for Android
120-
- Mock locations
125+
- Debug logging
126+
- Background location permissions request for Android
127+
- Mock locations
121128
- `onAvailabilityChanged` stream
122129
- `onError` stream
123130
- Location result for `addGeotag`
@@ -242,63 +249,42 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
242249

243250
## [0.1.1] - 2020-06-18
244251

252+
[2.0.2]: https://github.com/hypertrack/sdk-flutter/releases/tag/2.0.2
253+
245254
#### Changed
246255

247256
- Android SDK version updated to 4.4.1
248-
- setTripMarker` replaced with `addGeotag`
257+
- setTripMarker`replaced with`addGeotag`
249258

250259
## [0.1.0] - 2020-03-24
251260

252261
#### Added
253262

254263
- Initial release.
255264

265+
[2.0.2]: https://github.com/hypertrack/sdk-flutter/releases/tag/2.0.2
256266
[2.0.1]: https://github.com/hypertrack/sdk-flutter/releases/tag/2.0.1
257-
258267
[2.0.0]: https://github.com/hypertrack/sdk-flutter/releases/tag/2.0.0
259-
260268
[1.1.3]: https://github.com/hypertrack/sdk-flutter/releases/tag/1.1.3
261-
262269
[1.1.2]: https://github.com/hypertrack/sdk-flutter/releases/tag/1.1.2
263-
264270
[1.1.1]: https://github.com/hypertrack/sdk-flutter/releases/tag/1.1.1
265-
266271
[1.1.0]: https://github.com/hypertrack/sdk-flutter/releases/tag/1.1.0
267-
268272
[1.0.0]: https://github.com/hypertrack/sdk-flutter/releases/tag/1.0.0
269-
270273
[0.4.3]: https://github.com/hypertrack/sdk-flutter/releases/tag/0.4.3
271-
272274
[0.4.2]: https://github.com/hypertrack/sdk-flutter/releases/tag/0.4.2
273-
274275
[0.4.1]: https://github.com/hypertrack/sdk-flutter/releases/tag/0.4.1
275-
276276
[0.4.0]: https://github.com/hypertrack/sdk-flutter/releases/tag/0.4.0
277-
278277
[0.3.1]: https://github.com/hypertrack/sdk-flutter/releases/tag/0.3.1
279-
280278
[0.3.0]: https://github.com/hypertrack/sdk-flutter/releases/tag/0.3.0
281-
282279
[0.2.1]: https://github.com/hypertrack/sdk-flutter/releases/tag/0.2.1
283-
284280
[0.2.0]: https://github.com/hypertrack/sdk-flutter/releases/tag/0.2.0
285-
286281
[0.1.9]: https://github.com/hypertrack/sdk-flutter/releases/tag/0.1.9
287-
288282
[0.1.8]: https://github.com/hypertrack/sdk-flutter/releases/tag/0.1.8
289-
290283
[0.1.7]: https://github.com/hypertrack/sdk-flutter/releases/tag/0.1.7
291-
292284
[0.1.6]: https://github.com/hypertrack/sdk-flutter/releases/tag/0.1.6
293-
294285
[0.1.5]: https://github.com/hypertrack/sdk-flutter/releases/tag/0.1.5
295-
296286
[0.1.4]: https://github.com/hypertrack/sdk-flutter/releases/tag/0.1.4
297-
298287
[0.1.3]: https://github.com/hypertrack/sdk-flutter/releases/tag/0.1.3
299-
300288
[0.1.2]: https://github.com/hypertrack/sdk-flutter/releases/tag/0.1.2
301-
302289
[0.1.1]: https://github.com/hypertrack/sdk-flutter/releases/tag/0.1.1
303-
304290
[0.1.0]: https://github.com/hypertrack/sdk-flutter/releases/tag/0.1.0

android/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ android {
4343
disable 'InvalidPackage'
4444
}
4545
dependencies {
46-
def hyperTrackVersion = "7.0.6"
46+
def hyperTrackVersion = "7.0.8"
4747
implementation "com.hypertrack:sdk-android:${hyperTrackVersion}"
4848
implementation "com.hypertrack:location-services-google:${hyperTrackVersion}"
4949
implementation "com.hypertrack:push-service-firebase:${hyperTrackVersion}"

docs/__404error.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ <h5><span class="package-name">hypertrack_plugin</span> <span class="package-kin
9595
<footer>
9696
<span class="no-break">
9797
hypertrack_plugin
98-
2.0.1
98+
2.0.2
9999
</span>
100100

101101

docs/data_types_hypertrack_error/HyperTrackError.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -430,7 +430,7 @@ <h5>hypertrack_error library</h5>
430430
<footer>
431431
<span class="no-break">
432432
hypertrack_plugin
433-
2.0.1
433+
2.0.2
434434
</span>
435435

436436

docs/data_types_hypertrack_error/HyperTrackError/HyperTrackError.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ <h5>HyperTrackError enum</h5>
131131
<footer>
132132
<span class="no-break">
133133
hypertrack_plugin
134-
2.0.1
134+
2.0.2
135135
</span>
136136

137137

docs/data_types_hypertrack_error/HyperTrackError/values-constant.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ <h5>HyperTrackError enum</h5>
135135
<footer>
136136
<span class="no-break">
137137
hypertrack_plugin
138-
2.0.1
138+
2.0.2
139139
</span>
140140

141141

docs/data_types_hypertrack_error/data_types_hypertrack_error-library.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ <h5>hypertrack_error library</h5>
131131
<footer>
132132
<span class="no-break">
133133
hypertrack_plugin
134-
2.0.1
134+
2.0.2
135135
</span>
136136

137137

docs/data_types_json/JSON-class.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -221,7 +221,7 @@ <h5>json library</h5>
221221
<footer>
222222
<span class="no-break">
223223
hypertrack_plugin
224-
2.0.1
224+
2.0.2
225225
</span>
226226

227227

docs/data_types_json/JSON/JSON.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ <h5>JSON class</h5>
112112
<footer>
113113
<span class="no-break">
114114
hypertrack_plugin
115-
2.0.1
115+
2.0.2
116116
</span>
117117

118118

0 commit comments

Comments
 (0)