# 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](/move-platform/sdk/models/listeners-callbacks.md#movedevice-state-listener-callback).

{% tabs %}
{% tab title="Android" %}

```kotlin
enum class MoveDeviceState {
    OK,
    NOT_SYNCHRONIZED,
}
```

{% endtab %}

{% tab title="iOS" %}

```swift
public enum MoveDeviceState {
	case ok
	case notSynchronized
}
```

{% endtab %}

{% tab title="React Native" %}

```typescript
export type MoveSdkDeviceState = 'OK' | 'NOT_SYNCHRONIZED';
```

{% endtab %}

{% tab title="Flutter" %}

```kotlin
enum MoveDeviceState {
  ok,
  notSynchronized,
}
```

{% endtab %}
{% endtabs %}

<table data-header-hidden><thead><tr><th width="270.55859375">MoveDevice</th><th></th></tr></thead><tbody><tr><td><strong>MoveDevice</strong></td><td></td></tr><tr><td>ok</td><td>No error.</td></tr><tr><td>notSynchronized</td><td>There was an error and the device was not accepted by the backend, possibly due to malformed id.</td></tr></tbody></table>


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.movesdk.com/move-platform/sdk/models/movedevice/movedevicestate.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
