The format is based on Keep a Changelog, and this project adheres to Semantic Versioning.
2.2.3 - 2024-05-24
- Updated HyperTrack SDK Android to 7.5.5
2.2.2 - 2024-05-14
2.2.1 - 2024-05-03
- Updated HyperTrack SDK iOS to 5.5.3
2.2.0 - 2024-04-23
- New
addGeotag
andaddGeotagWithExpectedLocation
methods signature that haveorderHandle
andorderStatus
parameters. You can use this API when users need to clock in/out of work in your app to honor their work time (see Clock in/out Tagging guide for more info) - Updated HyperTrack SDK iOS to 5.5.2
- Updated HyperTrack SDK Android to 7.5.3
2.1.2 - 2024-02-28
- Updated HyperTrack SDK Android to 7.4.3
2.1.1 - 2024-02-16
2.1.0 - 2024-02-02
2.0.1 - 2023-12-27
- Undefined latitude and longitude in
addGeotagWithExpectedLocation()
response
2.0.0 - 2023-11-29
We are excited to announce the release of HyperTrack Cordova SDK 2.0.0, a major update to our location tracking SDK. This release ensures highest tracking performance, reduces deployed app sizes and comes with an improved API to simplify the integrations. We highly recommend upgrading, but please note that there are a few breaking changes. Check the Migration Guide.
locate()
to ask for one-time user locationsubscribeToLocation()
to subscribe to user location updatesgetErrors()
getName()
getMetadata()
- HyperTrackError types:
noExemptionFromBackgroundStartRestrictions
permissionsNotificationsDenied
- Updated HyperTrack SDK Android to 7.0.9
- Added Android SDK plugins (
location-services-google
andpush-service-firebase
) - Updated HyperTrack SDK iOS to 5.0.7
- The whole HyperTrack API is now static
- Changed the way to provide publishableKey (you need to add
HyperTrackPublishableKey
meta-data
item to yourAndroidManifest.xml
andInfo.plist
) - Renamed HyperTrackError types:
gpsSignalLost
tolocationSignalLost
locationPermissionsDenied
topermissionsLocationDenied
locationPermissionsInsufficientForBackground
topermissionsLocationInsufficientForBackground
locationPermissionsNotDetermined
topermissionsLocationNotDetermined
locationPermissionsProvisional
tolocationPermissionsProvisional
locationPermissionsReducedAccuracy
topermissionsLocationReducedAccuracy
locationPermissionsRestricted
topermissionsLocationRestricted
- Renamed
isAvailable()
togetIsAvailable()
- Renamed
isTracking()
togetIsTracking()
- Renamed
setAvailability()
tosetIsAvailable(boolean)
- Changed
startTracking()
andstopTracking()
tosetIsTracking(boolean)
- Renamed
subscribeToTracking()
tosubscribeToIsTracking()
- Renamed
subscribeToAvailability()
tosubscribeToIsAvailable()
- Renamed
unsubscribeFromTracking()
tounsubscribeFromIsTracking()
- Renamed
unsubscribeToAvailability()
tounsubscribeFromIsAvailable()
initialize()
method (the API is now static)SdkInitParams
(the config now should be done with theAndroidManifest
metadata andInfo.plist
)- Motion Activity permissions are not required for tracking anymore
- HyperTrackError types:
motionActivityPermissionsDenied
motionActivityServicesDisabled
motionActivityServicesUnavailable
motionActivityPermissionsRestricted
networkConnectionUnavailable
sync()
method
1.1.0 - 2023-07-09
addGeotagWithExpectedLocation()
method- API Documentation
1.0.3 - 2023-06-16
- Updated HyperTrack iOS SDK to 4.16.1
1.0.2 - 2023-06-15
- Updated HyperTrack Android SDK to 6.4.2
1.0.1 - 2023-06-01
- Updated HyperTrack iOS SDK to 4.16.0
1.0.0 - 2023-02-10
- Updated HyperTrack Android SDK to 6.4.0
- Updated HyperTrack iOS SDK to 4.14.0
- Plugin exported object renamed from
hypertrack
toHyperTrack
setDeviceName()
renamed tosetName()
setDeviceMetadata()
renamed tosetMetadata()
addGeoTag()
renamed toaddGeotag()
syncDeviceSettings()
renamed tosync()
subscribeToTracking()
subscribeToAvailability()
subscribeToErrors()
unsubscribeFromTracking()
unsubscribeFromAvailability()
unsubscribeFromErrors()
isAvailable()
setAvailability()
- Location result for
addGeotag
getLocation()
getBlockers()
requestPermissionsIfNecessary()
allowMockLocations()
(useallowMockLocations
param ininitialize()
istead)setTrackingNotificationProperties()
isRunning
0.6.4 - 2022-07-08
- Updated Hypertrack Android SDK to 6.2.2
0.6.3 - 2022-07-29
- Fix issue with missing com.google.gson dependency
0.6.2 - 2022-07-08
- Updated Hypertrack iOS SDK to 4.12.3
0.6.1 - 2022-07-08
- Updated Hypertrack Android SDK to 6.1.4
0.6.0 - 2022-05-04
- Updated Hypertrack Android SDK to 6.0.4
0.5.0 - 2022-04-05
- getLatestLocation and getCurrentLocation methods
0.4.2 - 2021-11-11
- Updated Hypertrack Android SDK to 5.4.5
0.4.1 - 2021-08-25
- Updated to ue Android SDK v5.4.0
0.4.0 - 2021-07-02
- Updated to ue Android SDK v5.2.5
0.3.0 - 2021-06-09
- Updated to ue Android SDK v5.2.0
getBlockers
method that returns a list of issues, that must be resolved for the reliable tracking. E.g. you can block user access to the screen, that enables tracking feature, utill all the blockers are resolved using the following approach:hypertrack.getBlockers( function(blockers) { let dialogConfig = []; blockers.forEach(blocker => let menuItem = { title: blocker.userActionTitle, buttonName: blocker.userActionCTA, onClick: function() {blocker.resolve(success, error);}, actionExplanation: blocker.userActionExplanation }; dialogConfig.push(menuItem); ); if (dialogConfig.length) showErrorDialog(dialogConfig); }, function(error) { console.log("Can't get blockers due to the error: " + error); } );
0.2.1 - 2021-05-25
- plugin import error fixed
0.2.0 - 2021-05-23
- Updated to use Android SDK v5.0.0
- Geotag method returns geotag location or the reason, why it can't be determined
- Possibility to restrict the geotag.
0.1.1 - 2021-05-07
- Updated to use Android SDK v4.12.0
0.1.0 - 2021-04-05
- Possibility to restrict a geotag to a certain location.
- Updated to use Android SDK v4.11.0
- Start tracking from SDK on Android 11 won't ask for background location access.
0.0.6 - 2020-12-24
- Updated to use Android SDK v4.9.0
- Firebase messaging service conflict was fixed.
0.0.5 - 2020-11-02
- Updated to use Android SDK v4.8.0
0.0.4 - 2020-10-22
- Android push token updates and messages are forwarded to FCM Plugin if it's present in project.
- Expected location in geotags not been passed from JS to Java bug.
- Android SDK was updated to v4.5.4
- Start/Stop tracking from the SDK methods
- iOS platform support
0.0.2 - 2020-08-06
- Missing notification properties setter implementation was added at Java layer.
- Device metadata setter bug was fixed.
0.0.1 - 2020-07-29
- Cordova support for HyperTrack Android SDK v4.5.3