1.18 -> 1.19

DeviceService changes

Removed 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

vehicleIdfield of type String? has been moved inside vehicle field of type Vehicle.

// SDK 1.18
trip.vehicleId

// SDK 1.19
trip.vehicle?.vehicleId

AppMisuse changes

  • package name changed from com.drivesync.android.heartbeat to com.drivesync.android.imsappmisuse

  • API changes

Last updated