MoveConfig
Android does not provide a config object,
but uses various Move.Builder methods for this
enum TimelineDetectionService {
case DRIVING
case BICYCLE
case WALKING
case PLACES
case PUBLIC_TRANSPORT
}
enum DrivingService {
case DistractionFreeDriving
case DrivingBehaviour
}
enum OtherService {
case PointsOfInterest
}struct MoveConfig {
enum TimelineDetectionService {
case driving
case bicycle
case walking
case places
case publicTransport
}
enum DrivingService {
case dfd
case behaviour
}
enum OtherService: Int, Codable {
case poi
}
var timelineDetectionServices: [TimelineDetectionService]
var drivingServices: [DrivingService]
var otherServices: [OtherService]
}Last updated