MoveSDKState

MOVE Models

Represent the different SDK States.

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

MoveState

uninitialized

The MOVE SDK is not initialized.

ready

The MOVE SDK is initialized and ready to start services. Transited to this state on initialization and when services didn't start.

running

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

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

Last updated