MoveDevice

MOVE Models

Since MOVE SDK v2.4

MoveDevice is used to register / unregister relevant car audio devices and beacons if the optional BDD - Device Discovery feature is configured with setup(...). It is also used when the relevant scan results are delivered to the host app.

After a .shutdown() the previous registered devices will be unregistered.

data class MoveDevice(
    val id: String,
    val name: String,
    val manufacturerId: Int? = null,
)

MoveDevice

Type

id

String

A device identifier to uniquely identify the device i.e: MAC address. This is used for equality checks. This id is sent to the server during trip device discovery.

name

String

The display name of the device.

manufacturerId (Android only)

Integer

A company identification of the beacon. You can find a list of companies at www.bluetooth.com.

data (Flutter/React only)

String

Opaque data field to convert to native object.

MoveDevice related

deviceDiscoveryListener (Android / iOS)

Listeners / Callbacks

Last updated