> For the complete documentation index, see [llms.txt](https://docs.movesdk.com/move-platform/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.movesdk.com/move-platform/sdk/models/movehealthscore.md).

# MoveHealthScore

{% hint style="info" %}
**Note:** `MoveHealthScore` is for diagnostic purposes only. It helps identify potential integration issues.
{% endhint %}

{% hint style="info" %}
**Note:** Health monitoring uses platform-specific models. iOS and React Native use `MoveHealthItem`. Android uses `MoveHealthScore`. Flutter uses `MoveHealthItem` with a simplified structure (reason + description only).
{% endhint %}

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

```kotlin
data class MoveHealthScore(
    val reason: List<HealthReason>,
    val configuration: String,
    val battery: Int,
    val mobileConnection: String,
    val listeners: MoveHealthListeners,
    val resources: MoveHealthResources,
    val versions: List<MoveHealthVersion>?,
)

enum class HealthReason {
    CPU_USAGE,
    DISK_USAGE,
    BATTERY_LEVEL,
    INTERNET_USAGE,
    MEMORY_USAGE,
    NEW_VERSION,
    UNIMPLEMENTED_LISTENERS;
}

data class MoveHealthListeners(
    val auth: Boolean,
    val state: Boolean,
    val trip: Boolean,
    val failure: Boolean,
    val warning: Boolean,
)

data class MoveHealthResources(
    val cpu: Int,
    val memory: MoveHealthResourcesMemory,
    val disk: MoveHealthResourcesDisk,
)

data class MoveHealthResourcesMemory(
    val totalBytes: Long,
    val freeBytes: Long,
    val usedBytes: Long,
)

data class MoveHealthResourcesDisk(
    val totalBytes: Long,
    val freeBytes: Long,
    val usedBytes: Long,
)

data class MoveHealthVersion(
    val version: String?,
    val warning: String?,
    val message: String?,
)

```

{% endtab %}
{% endtabs %}

<table data-header-hidden><thead><tr><th width="217.5"></th><th width="223"></th><th></th></tr></thead><tbody><tr><td><strong>MoveHealthScore</strong></td><td></td><td></td></tr><tr><td>reason</td><td>List&#x3C;HealthReason></td><td>A list of areas that could cause problems.</td></tr><tr><td>configuration</td><td>String</td><td>The current configuration as a readable text.</td></tr><tr><td>battery</td><td>Int</td><td>The charge value of the battery.</td></tr><tr><td>mobileConnection</td><td>String</td><td>The type of connection.</td></tr><tr><td>listeners</td><td>MoveHealthListeners</td><td>An overview of implemented listeners.</td></tr><tr><td>resources</td><td>MoveHealthResources</td><td>An overview about available / used memory / disk and cpu.</td></tr><tr><td>versions</td><td>List&#x3C;MoveHealthVersion></td><td>An overview / reminder of (new) MOVE SDK versions with important changes.</td></tr></tbody></table>
