DeviceDiscovery

MOVE Models

Since MOVE SDK v2.4

Please note that MoveDevices can only be registered if the SDK has been configured with .setup()

data class DeviceDiscovery(
    val startDelay: Long?,
    val duration: Long?,
    val interval: Long?,
    val stopScanOnFirstDiscovered: Boolean = false,
)

DeviceDiscovery

Type

Default

startDelay

Number

120

Device discovery delay from start of the trip.

duration

Number

10

Device discovery scan duration.

interval

Number

300

Device discovery repeat interval.

stopScanOnFirstDiscovered

Boolean

false

Stop detection on first device discovered.

DeviceDiscovery related

.setup(..., options:...)

During setup it is possible to add DeviceDiscovery options to the MOVE SDK.

Device Discovery Listener (Android / iOS)

Fired when previous registered MoveDevice's are scanned.

Last updated