1.18 -> 1.19
DeviceService changes
DeviceService changesRemoved enum classDeviceService.ActivationMode
In DeviceService activate() no longer support activationModeparameter
// SDK 1.18
DeviceService(identity).activate(DeviceService.ActivationMode.ACTIVATE) {result -> ...}
// SDK 1.19
DeviceService(identity).activate() {result -> ...}
Trip model changes
Trip model changesvehicleIdfield of type String? has been moved inside vehicle field of type Vehicle.
// SDK 1.18
trip.vehicleId
// SDK 1.19
trip.vehicle?.vehicleIdAppMisuse changes
AppMisuse changespackage name changed from
com.drivesync.android.heartbeattocom.drivesync.android.imsappmisuse
API changes
Last updated