Android
Additions
Trip.Expansionincludes few more expansions
/**
* Expand vehicle
*/
VEHICLE,
/**
* Expand include trip start and end points
*/
POIS,
/**
* Expand raw only data
*/
RAW_ONLY,
/**
* Expand include device id
*/
DEVICE,
/**
* Expand training status of the driver/passenger
*/
USER_TRAINING_STATUS,
/**
* Expand filters by association date
*/
FILTER_BY_ASSOCIATION_DATEInitialize DsDevice with
vehicleIdand associate the device using DsDeviceManager.associateDevice API for adding vehicle id to trip files for wedge solutions.TripService API Changes:
TripService.fetchandTripService.fetchAllnow accept an additional roles parameter.Use this to filter trips by
roleswhen fetching.
AccountRole Enum Expanded:
Two new cases have been added to the AccountRole enum:
namedDriver (for the "
NAMED_DRIVER" role)nonDrivingOwner (for the "
NON_DRIVING_OWNER" role)
Automatic Wedge Association Feature. Leare more here. Link
Learn about the new WedgeService API. Link
Breaking Changes
Trip.Expansion Updates:
The
GEOMETRYproperty has been removed fromTrip.Expansion. Please use thePOINTSproperty instead.
The DsDevice's batteryLevel property type is changed from Float to Int
var batteryLevel: Int?
Limitations/Known issues
Trip recording will continue uninterrupted after upgrading to SDK 1.25.0. However, existing trip files will not automatically include vehicle IDs. To add vehicle IDs to trip files for wedge solutions, initialize DsDevice with
vehicleIdand associate the device using DsDeviceManager.associateDevice API
Last updated