MoveDeviceState

When a device is registered, it is synchronized with the backend so that it will persist across installations. If the device has a malformed identifier it may be rejected by the backend. The device property state will reflect this status and the app will be notified via the deviceStateListener.

enum class MoveDeviceState {
    OK,
    NOT_SYNCHRONIZED,
}

MoveDevice

ok

No error.

notSynchronized

There was an error and the device was not accepted by the backend, possibly due to malformed id.

Last updated