For the complete documentation index, see llms.txt. This page is also available as Markdown.

MoveSdkState

MOVE Models

Represent the different SDK States.

sealed class MoveSdkState {
    Uninitialised()
    Ready()
    Running()
}

MoveState

uninitialized (Flutter see unknown)

The MOVE SDK is not initialized.

ready

The MOVE SDK is initialized and ready to start services. Transitions to this state after successful initialization or after calling stopAutomaticDetection().

running

The MOVE SDK is running its services. Transited to this state after calling startAutomaticDetection() (Android / iOS / React / Flutter).

Flutter: unknown

Initial state before MoveSdk.init() has been called, or after shutdown() has completed. The SDK is not initialized and no data collection is active.

For further information please see Android / iOS / React / Flutter.

Last updated